Author: nickboldt
Date: 2012-10-11 18:54:22 -0400 (Thu, 11 Oct 2012)
New Revision: 44452
Modified:
trunk/build/parent/pom.xml
Log:
add jenkins.target.maximum profile for use in jenkins (parallel to maximum profile for use
offline by devs)
Modified: trunk/build/parent/pom.xml
===================================================================
--- trunk/build/parent/pom.xml 2012-10-11 22:47:07 UTC (rev 44451)
+++ trunk/build/parent/pom.xml 2012-10-11 22:54:22 UTC (rev 44452)
@@ -561,8 +561,11 @@
</build>
</profile>
- <!-- Target platform file pointing at a single update site located
- from Jenkins filesystem (mirrored unified.target for performances) -->
+ <!-- Target platform files pointing at a single update site located
+ from Jenkins filesystem (mirrored unified.target for performances)
+ use jenkins.target for component builds, and
+ use jenkins.target.maximum for aggregate and installer builds
+ -->
<profile>
<id>jenkins.target</id>
<build>
@@ -574,7 +577,7 @@
<configuration>
<target>
<artifact>
- <groupId>org.jboss.tools.target-platforms.${targetPlatformGroup}</groupId>
+ <groupId>org.jboss.tools.target-platforms.${targetPlatformGroup-maximum}</groupId>
<artifactId>jenkins</artifactId>
<version>${JBT_VERSION}.${BUILD_ALIAS}-SNAPSHOT</version>
<classifier>jenkins</classifier>
@@ -585,6 +588,31 @@
</plugins>
</build>
</profile>
+ <profile>
+ <id>jenkins.target.maximum</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <version>${tychoVersion}</version>
+ <configuration>
+ <target>
+ <artifact>
+ <groupId>org.jboss.tools.target-platforms.${targetPlatformGroup-maximum}</groupId>
+ <artifactId>jenkins</artifactId>
+ <version>${JBT_VERSION}.${BUILD_ALIAS}-SNAPSHOT</version>
+ <classifier>jenkins</classifier>
+ </artifact>
+ </target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
<!-- To use this profile, must have first created a local.target file,
which points to a local repo. You can do this by hand or generate it from
Show replies by date