This is an automated email from the ASF dual-hosted git repository.

chtompki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 8967997  LANG-1450: Generate javadoc jar on build
8967997 is described below

commit 89679976b8b05c14707725489122532fcd71e2ce
Author: Rob <[email protected]>
AuthorDate: Mon Apr 22 11:44:29 2019 -0400

    LANG-1450: Generate javadoc jar on build
---
 pom.xml                 | 30 ++++++++++++++++++++++++++++++
 src/changes/changes.xml |  1 +
 2 files changed, 31 insertions(+)

diff --git a/pom.xml b/pom.xml
index 6b86494..a892460 100644
--- a/pom.xml
+++ b/pom.xml
@@ -652,6 +652,36 @@
     </pluginManagement>
     <plugins>
       <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>${commons.javadoc.version}</version>
+        <configuration>
+          <quiet>true</quiet>
+          <encoding>utf-8</encoding>
+          <docEncoding>utf-8</docEncoding>
+          <notimestamp>true</notimestamp>
+          <links>
+            <link>http://docs.oracle.com/javase/7/docs/api/</link>
+            <link>http://docs.oracle.com/javaee/6/api/</link>
+          </links>
+          <archive>
+            <manifest>
+              
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+              
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+            </manifest>
+          </archive>
+        </configuration>
+        <executions>
+          <execution>
+            <id>create-javadoc-jar</id>
+            <goals>
+              <goal>javadoc</goal>
+              <goal>jar</goal>
+            </goals>
+            <phase>package</phase>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <executions>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 8a00c68..7ef4c18 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -46,6 +46,7 @@ The <action> type attribute can be add,update,fix,remove.
   <body>
 
   <release version="3.10" date="YYYY-MM-DD" description="TBD">
+    <action issue="LANG-1450" type="fix" dev="chtompki">Generate javadoc jar 
on build.</action>
   </release>
 
   <release version="3.9" date="2019-04-09" description="New features and bug 
fixes. Requires Java 8, supports Java 9, 10, 11">

Reply via email to