Author: nickboldt
Date: 2011-12-03 17:29:04 -0500 (Sat, 03 Dec 2011)
New Revision: 36923
Modified:
trunk/central/site/pom.xml
Log:
enable generation of directory.xml file, as well as suppressing uncatg'd features and
creating an index.html page
Modified: trunk/central/site/pom.xml
===================================================================
--- trunk/central/site/pom.xml 2011-12-03 22:28:57 UTC (rev 36922)
+++ trunk/central/site/pom.xml 2011-12-03 22:29:04 UTC (rev 36923)
@@ -10,6 +10,77 @@
<groupId>org.jboss.tools.central</groupId>
<artifactId>central.site</artifactId>
<name>central.site</name>
-
<packaging>eclipse-update-site</packaging>
-</project>
\ No newline at end of file
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>${maven.antrun.plugin.version}</version>
+ <executions>
+ <execution>
+ <id>install</id>
+ <phase>install</phase>
+ <configuration>
+ <quiet>true</quiet>
+ <tasks>
+ <!-- called AFTER generating update site + zip to add in extra content -->
+ <!-- <ant antfile="build.xml"
target="generate.directory.xml.only" dir="../../build/aggregate/">
-->
+ <ant antfile="build.xml" target="basic.build"
dir="../../build/aggregate/">
+ <property name="output.dir" value="${basedir}" />
+ <property name="inputRepo"
+ value="${jbosstools-nightly-staging-composite}" />
+ <property name="update.site.name" value="JBoss Tools -
Central"/>
+ <property name="JBT_VERSION" value="${JBT_VERSION}"
/>
+ <property name="BUILD_ALIAS" value="${BUILD_ALIAS}"
/>
+ </ant>
+ <delete file="index.html"/>
+ <delete file="jbosstools-directory.xml"/>
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>commons-net</groupId>
+ <artifactId>commons-net</artifactId>
+ <version>1.4.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.7.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-nodeps</artifactId>
+ <version>1.7.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-trax</artifactId>
+ <version>1.7.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-commons-net</artifactId>
+ <version>1.7.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-apache-regexp</artifactId>
+ <version>1.7.1</version>
+ </dependency>
+ <dependency>
+ <groupId>ant-contrib</groupId>
+ <artifactId>ant-contrib</artifactId>
+ <version>1.0b3</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Show replies by date