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

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Thu Sep 13 08:42:54 EDT 2012


Author: jpeterka
Date: 2012-09-13 08:42:54 -0400 (Thu, 13 Sep 2012)
New Revision: 43645

Modified:
   trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/pom.xml
Log:
freemarker ui bot test pom fix for apple jdk 1.7

Modified: trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/pom.xml
===================================================================
--- trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/pom.xml	2012-09-13 11:42:39 UTC (rev 43644)
+++ trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/pom.xml	2012-09-13 12:42:54 UTC (rev 43645)
@@ -12,6 +12,9 @@
 	<version>1.0.0-SNAPSHOT</version>
 
 	<packaging>eclipse-test-plugin</packaging>
+	<properties>
+		<vendor-os>${java.vendor.url}-${os.name}</vendor-os>
+	</properties>
 
 	<profiles>
 		<profile>
@@ -20,6 +23,19 @@
 				<systemProperties>-Xdebug -Xrunjdwp:transport=dt_socket,address=8001,server=y,suspend=y</systemProperties>
 			</properties>
 		</profile>
+
+		<profile>
+			<id>mac17</id>
+			<activation>
+				<property>
+					<name>vendor-os</name>
+					<value>http://java.oracle.com/-Mac OS X</value>
+				</property>
+			</activation>
+			<properties>
+				<applejdkProperties>-Dawt.toolkit=sun.lwawt.macosx.LWCToolkit</applejdkProperties>
+			</properties>
+		</profile>		
 	</profiles>
 
 	<build>
@@ -71,6 +87,49 @@
 					</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>
+			
+		</plugins>
 	</build>
 </project>



More information about the jbosstools-commits mailing list