[jbosstools-commits] JBoss Tools SVN: r43594 - trunk/esb/tests/org.jboss.tools.esb.core.test.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Tue Sep 11 09:26:03 EDT 2012


Author: ldimaggio
Date: 2012-09-11 09:26:03 -0400 (Tue, 11 Sep 2012)
New Revision: 43594

Modified:
   trunk/esb/tests/org.jboss.tools.esb.core.test/pom.xml
Log:
Added macosx, win32, linux to target-platform-configuration plugin - trying to run tests on windows



Modified: trunk/esb/tests/org.jboss.tools.esb.core.test/pom.xml
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.core.test/pom.xml	2012-09-11 13:07:47 UTC (rev 43593)
+++ trunk/esb/tests/org.jboss.tools.esb.core.test/pom.xml	2012-09-11 13:26:03 UTC (rev 43594)
@@ -16,4 +16,54 @@
 		<coverage.filter>org.jboss.tools.esb.core*</coverage.filter>
 		<emma.instrument.bundles>org.jboss.tools.esb.core,org.jboss.tools.esb.project.core</emma.instrument.bundles>
 	</properties>
-</project>
\ No newline at end of file
+
+		<plugins>
+
+			<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>
+
+
+
+
+</project>



More information about the jbosstools-commits mailing list