Author: mes
Date: 2010-07-22 17:58:19 -0700 (Thu, 22 Jul 2010)
New Revision: 21008
Modified:
corelibs/trunk/pom.xml
Log:
I thought I added code to generate javadoc and src jars, but apparently it's
not working
Modified: corelibs/trunk/pom.xml
===================================================================
--- corelibs/trunk/pom.xml 2010-07-23 00:43:31 UTC (rev 21007)
+++ corelibs/trunk/pom.xml 2010-07-23 00:58:19 UTC (rev 21008)
@@ -51,9 +51,44 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Xmx256m</argLine>
-
<redirectTestOutputToFile>true</redirectTestOutputToFile>
+ <redirectTestOutputToFile>true</redirectTestOutputToFile>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <encoding>UTF-8</encoding>
+ <locale>en</locale>
+ <javadocVersion>1.5</javadocVersion>
+ <links>
+
<link>http://download.oracle.com/docs/cd/E17476_01/javase/1.5.0/docs/api/</link>
+ </links>
+ <footer>Cytoscape ${corelibs.version} Core Libraries API</footer>
+ <header>Cytoscape ${corelibs.version Core Libraries API</header>
+ <bottom>Copyright 2010 Cytoscape Consortium. All rights
reserved.</bottom>
+ </configuration>
+ <executions>
+ <execution>
+ <id>attach-javadocs</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</pluginManagement>
</build>
--
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.