Author: mes
Date: 2010-09-17 15:23:50 -0700 (Fri, 17 Sep 2010)
New Revision: 21927
Modified:
cytoscape/trunk/release-bundles/pom.xml
Log:
now copies everything necessary for release to the download site
Modified: cytoscape/trunk/release-bundles/pom.xml
===================================================================
--- cytoscape/trunk/release-bundles/pom.xml 2010-09-17 21:44:44 UTC (rev
21926)
+++ cytoscape/trunk/release-bundles/pom.xml 2010-09-17 22:23:50 UTC (rev
21927)
@@ -31,7 +31,9 @@
</resource>
</resources>
<plugins>
- <!-- This will unpack the distribution into the target directory -->
+ <!-- This will unpack the distribution into the target directory,
+ copy the distribution into target/install4j directory, and
+ unpack the javadoc in the target/install4j directory -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
@@ -48,6 +50,31 @@
<includeTypes>zip</includeTypes>
</configuration>
</execution>
+ <execution>
+ <id>unpack-javadoc</id>
+ <phase>package</phase>
+ <goals>
+ <goal>unpack-dependencies</goal>
+ </goals>
+ <configuration>
+
<outputDirectory>${project.build.directory}/install4j/javadoc</outputDirectory>
+ <excludeTransitive>true</excludeTransitive>
+ <excludeGroupIds>junit</excludeGroupIds>
+ <includeClassifiers>javadoc</includeClassifiers>
+ </configuration>
+ </execution>
+ <execution>
+ <id>copy-distribution</id>
+ <phase>package</phase>
+ <goals>
+ <goal>copy-dependencies</goal>
+ </goals>
+ <configuration>
+
<outputDirectory>${project.build.directory}/install4j</outputDirectory>
+ <excludeTransitive>true</excludeTransitive>
+ <includeTypes>zip</includeTypes>
+ </configuration>
+ </execution>
</executions>
</plugin>
<!-- This will create the bundles -->
@@ -81,6 +108,12 @@
<version>${version}</version>
<type>zip</type>
</dependency>
+ <dependency>
+ <groupId>cytoscape</groupId>
+ <artifactId>javadoc</artifactId>
+ <version>${version}</version>
+ <classifier>javadoc</classifier>
+ </dependency>
</dependencies>
</project>
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.