Author: ljelinko
Date: 2012-04-19 05:52:44 -0400 (Thu, 19 Apr 2012)
New Revision: 40330
Added:
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/launchers/prepare_workspace/RT_prepare_workspace.launch
Modified:
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/launchers/prepare_workspace/pom.xml
Log:
Created support for workspace preparation.
Added:
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/launchers/prepare_workspace/RT_prepare_workspace.launch
===================================================================
---
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/launchers/prepare_workspace/RT_prepare_workspace.launch
(rev 0)
+++
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/launchers/prepare_workspace/RT_prepare_workspace.launch 2012-04-19
09:52:44 UTC (rev 40330)
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"
standalone="no"?>
+<launchConfiguration
type="org.eclipse.m2e.Maven2LaunchConfigurationType">
+<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
+<stringAttribute key="M2_GOALS" value="validate"/>
+<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
+<booleanAttribute key="M2_OFFLINE" value="false"/>
+<stringAttribute key="M2_PROFILES" value=""/>
+<listAttribute key="M2_PROPERTIES">
+<listEntry value="jboss-as-7-1=${folder_prompt:JBoss AS 7.1 installation
folder}"/>
+</listAttribute>
+<stringAttribute key="M2_RUNTIME"
value="/home/ljelinko/programs/apache-maven-3.0.3"/>
+<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
+<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
+<booleanAttribute key="M2_WORKSPACE_RESOLUTION"
value="false"/>
+<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY"
value="/home/ljelinko/work/workspaces/jboss-tools/org.jboss.tools.runtime.as.ui.bot.test/launchers/prepare_workspace"/>
+</launchConfiguration>
Modified:
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/launchers/prepare_workspace/pom.xml
===================================================================
---
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/launchers/prepare_workspace/pom.xml 2012-04-19
09:51:55 UTC (rev 40329)
+++
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/launchers/prepare_workspace/pom.xml 2012-04-19
09:52:44 UTC (rev 40330)
@@ -1,21 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
+<project
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
<groupId>org.jboss.tools.runtime.as.ui.bot.test</groupId>
<artifactId>prepare.workspace</artifactId>
<version>0.0.0-SNAPSHOT</version>
- <modelVersion>4.0.0</modelVersion>
+ <modelVersion>4.0.0</modelVersion>
<build>
- <resources>
- <resource>
- <directory>../../resources/template</directory>
- <filtering>true</filtering>
- <includes>
- <include>runtimes.properties</include>
- </includes>
- </resource>
- </resources>
- <outputDirectory>../../resources</outputDirectory>
- </build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.5</version>
+ <executions>
+ <execution>
+ <id>copy-resources</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>../../resources</outputDirectory>
+ <resources>
+ <resource>
+ <directory>../../resources/template</directory>
+ <filtering>true</filtering>
+ <includes>
+ <include>runtimes.properties</include>
+ </includes>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>
\ No newline at end of file