Author: carnold
Date: Sun Jun 20 04:06:59 2010
New Revision: 956319
URL: http://svn.apache.org/viewvc?rev=956319&view=rev
Log:
Bug 49078: Add NOTICE and LICENSE to javadoc.jar
Modified:
logging/chainsaw/trunk/pom.xml
logging/chainsaw/trunk/src/changes/changes.xml
Modified: logging/chainsaw/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/logging/chainsaw/trunk/pom.xml?rev=956319&r1=956318&r2=956319&view=diff
==============================================================================
--- logging/chainsaw/trunk/pom.xml (original)
+++ logging/chainsaw/trunk/pom.xml Sun Jun 20 04:06:59 2010
@@ -181,6 +181,23 @@
</tasks>
</configuration>
</execution>
+ <execution>
+ <id>javadoc.resources</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <copy todir="${project.build.directory}/apidocs/META-INF">
+ <fileset dir="${basedir}">
+ <include name="LICENSE" />
+ <include name="NOTICE" />
+ </fileset>
+ </copy>
+ </tasks>
+ </configuration>
+ </execution>
</executions>
<dependencies>
<dependency>
@@ -189,6 +206,11 @@
<version>1.6.5</version>
</dependency>
<dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.6.5</version>
+ </dependency>
+ <dependency>
<groupId>ant-contrib</groupId>
<artifactId>ant-contrib</artifactId>
<version>1.0b2</version>
@@ -217,6 +239,10 @@
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <encoding>UTF-8</encoding>
+ <docEncoding>UTF-8</docEncoding>
+ </configuration>
<executions>
<execution>
<goals>
Modified: logging/chainsaw/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/logging/chainsaw/trunk/src/changes/changes.xml?rev=956319&r1=956318&r2=956319&view=diff
==============================================================================
--- logging/chainsaw/trunk/src/changes/changes.xml (original)
+++ logging/chainsaw/trunk/src/changes/changes.xml Sun Jun 20 04:06:59 2010
@@ -37,6 +37,7 @@
Added ability to remember hidden log panels.
</action>
<action dev="psmith" issue="42670" type="fix">Address memory leak when
using cyclic model</action>
+ <action issue="49078" action="fix">javadoc.jar was missing NOTICE and
LICENSE.</action>
</release>
</body>
</document>