[jbosstools-commits] JBoss Tools SVN: r42992 - trunk/ws/tests/org.jboss.tools.ws.ui.bot.test.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Mon Aug 13 03:14:11 EDT 2012


Author: jjankovi
Date: 2012-08-13 03:14:11 -0400 (Mon, 13 Aug 2012)
New Revision: 42992

Modified:
   trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/pom.xml
Log:
environment configuration and debug profile added into pom.xml

Modified: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/pom.xml
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/pom.xml	2012-08-13 07:13:20 UTC (rev 42991)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/pom.xml	2012-08-13 07:14:11 UTC (rev 42992)
@@ -14,19 +14,17 @@
 
 	<packaging>eclipse-test-plugin</packaging>
 	<properties>
-		<!-- debug option -->
-		<!-- <systemProperties>-Xdebug -Xrunjdwp:transport=dt_socket,address=8001,server=y,suspend=y 
-			-Dswtbot.test.properties.file=${project.basedir}/properties/config_files/swtbot.properties</systemProperties> -->
-		<systemProperties>-Dswtbot.test.properties.file=${project.basedir}/properties/swtbot.properties</systemProperties>
-
-
-		<!-- need to manually set path to swtbot.test.properties with property -->
-		<!-- <systemProperties>-Xdebug -Xrunjdwp:transport=dt_socket,address=8001,server=y,suspend=y 
-			-Dswtbot.test.properties.file=${swtbot.properties}</systemProperties> -->
-		<!-- <systemProperties>-Dswtbot.test.properties.file=${swtbot.properties}</systemProperties> -->
-
+		<additionalSystemProperties></additionalSystemProperties>
+		<systemProperties>${additionalSystemProperties} -Dswtbot.test.properties.file=${project.basedir}/properties/swtbot.properties</systemProperties>
 	</properties>
-
+	<profiles>
+		<profile>
+			<id>debug</id>
+			<properties>
+				<additionalSystemProperties>-Xdebug -Xrunjdwp:transport=dt_socket,address=8001,server=y,suspend=y</additionalSystemProperties>
+			</properties>
+		</profile>
+	</profiles>
 	<build>
 		<plugins>
 			<plugin>
@@ -76,24 +74,55 @@
 							<artifactId>org.jboss.tools.ws.jaxrs.feature.feature.group</artifactId>
 							<version>0.0.0</version>
 						</dependency>
-						<!-- workaround until JIRA fixed -->
 						<dependency>
 							<type>p2-installable-unit</type>
 							<artifactId>org.jboss.ide.eclipse.as.feature.feature.group</artifactId>
 							<version>0.0.0</version>
 						</dependency>
-						<!-- end of workaround -->
-						<!-- <dependency> <type>p2-installable-unit</type> <artifactId>org.eclipse.jst.enterprise_ui.feature.feature.group</artifactId> 
-							<version>0.0.0</version> </dependency> <dependency> <type>p2-installable-unit</type> 
-							<artifactId>org.eclipse.jst.web_ui.feature.feature.group</artifactId> <version>0.0.0</version> 
-							</dependency> <dependency> <type>p2-installable-unit</type> <artifactId>org.eclipse.wst.web_ui.feature.feature.group</artifactId> 
-							<version>0.0.0</version> </dependency> <dependency> <type>p2-installable-unit</type> 
-							<artifactId>org.eclipse.wst.ws_ui.feature.feature.group</artifactId> <version>0.0.0</version> 
-							</dependency> <dependency> <type>p2-installable-unit</type> <artifactId>org.eclipse.wst.xml_ui.feature.feature.group</artifactId> 
-							<version>0.0.0</version> </dependency> -->
 					</dependencies>
 				</configuration>
 			</plugin>
+			<plugin>
+				<groupId>org.eclipse.tycho</groupId>
+				<artifactId>target-platform-configuration</artifactId>
+				<version>${tychoVersion}</version>
+				<configuration>
+					<resolver>p2</resolver>
+					<ignoreTychoRepositories>true</ignoreTychoRepositories>
+					<environments>
+						<environment>
+							<os>macosx</os>
+							<ws>cocoa</ws>
+							<arch>x86</arch>
+						</environment>
+						<environment>
+							<os>macosx</os>
+							<ws>cocoa</ws>
+							<arch>x86_64</arch>
+						</environment>
+						<environment>
+							<os>win32</os>
+							<ws>win32</ws>
+							<arch>x86</arch>
+						</environment>
+						<environment>
+							<os>win32</os>
+							<ws>win32</ws>
+							<arch>x86_64</arch>
+						</environment>
+						<environment>
+							<os>linux</os>
+							<ws>gtk</ws>
+							<arch>x86</arch>
+						</environment>
+						<environment>
+							<os>linux</os>
+							<ws>gtk</ws>
+							<arch>x86_64</arch>
+						</environment>
+					</environments>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>



More information about the jbosstools-commits mailing list