Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Commit

Permalink
Bug 49098: javadoc.jar was missing NOTICE and LICENSE and contained .…
Browse files Browse the repository at this point in the history
…svn entries

git-svn-id: https://svn.apache.org/repos/asf/logging/log4j/trunk@956307 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Curtis William Arnold committed Jun 19, 2010
1 parent 25586dc commit 63ee343
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
4 changes: 2 additions & 2 deletions NOTICE
@@ -1,5 +1,5 @@
Apache log4j
Copyright 2007 The Apache Software Foundation
Copyright 2010 The Apache Software Foundation

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
The Apache Software Foundation (http://www.apache.org/).
22 changes: 21 additions & 1 deletion pom.xml
Expand Up @@ -280,6 +280,23 @@ target platform and specify -Dntdll_target=msbuild on the mvn command line.
<goal>run</goal>
</goals>
</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>
Expand Down Expand Up @@ -328,13 +345,16 @@ target platform and specify -Dntdll_target=msbuild on the mvn command line.
</goals>
</execution>
</executions>

</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.6.1</version>
<version>2.7</version>
<configuration>
<docfilessubdirs>true</docfilessubdirs>
<excludedocfilessubdir>.svn</excludedocfilessubdir>
<encoding>UTF-8</encoding>
<docEncoding>${commons.docEncoding}</docEncoding>
</configuration>
<executions>
<execution>
Expand Down
1 change: 1 addition & 0 deletions src/changes/changes.xml
Expand Up @@ -24,6 +24,7 @@
<action issue="49470">log4j 1.2.17 release preparation</action>
<action issue="43282" action="fix">Eliminate duplicates in OSGi Import-Package directive.</action>
<action issue="48588" action="fix">DOMConfigurator does not close input stream when configured based on URL.</action>
<action issue="49078" action="fix">javadoc.jar was missing NOTICE and LICENSE and contained .svn entries.</action>
</release>

<release version="1.2.16" date="2010-04-06" description="Maintenance release">
Expand Down

0 comments on commit 63ee343

Please sign in to comment.