This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-pool.git
The following commit(s) were added to refs/heads/master by this push:
new 408c5590 Bump commons-lang3 from 3.12.0 to 3.13.0
408c5590 is described below
commit 408c559076121c443095ed041510c214001677f8
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jul 30 12:30:34 2023 -0400
Bump commons-lang3 from 3.12.0 to 3.13.0
Fix Javadoc generation
---
pom.xml | 85 ++++++++++++++++++++++++++-----------------------
src/changes/changes.xml | 3 ++
2 files changed, 49 insertions(+), 39 deletions(-)
diff --git a/pom.xml b/pom.xml
index 7732179e..50d6551e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -165,7 +165,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
- <version>3.12.0</version>
+ <version>3.13.0</version>
<scope>test</scope>
</dependency>
</dependencies>
@@ -286,53 +286,60 @@
</excludes>
</configuration>
</plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>src/assembly/bin.xml</descriptor>
+ <descriptor>src/assembly/src-tar-gz.xml</descriptor>
+ <descriptor>src/assembly/src-zip.xml</descriptor>
+ </descriptors>
+ <tarLongFileMode>gnu</tarLongFileMode>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-scm-publish-plugin</artifactId>
+ <configuration>
+ <ignorePathsToDelete>
+ <ignorePathToDelete>api-*</ignorePathToDelete>
+ </ignorePathsToDelete>
+ </configuration>
+ </plugin>
<plugin>
- <artifactId>maven-assembly-plugin</artifactId>
+ <groupId>com.github.siom79.japicmp</groupId>
+ <artifactId>japicmp-maven-plugin</artifactId>
<configuration>
- <descriptors>
- <descriptor>src/assembly/bin.xml</descriptor>
- <descriptor>src/assembly/src-tar-gz.xml</descriptor>
- <descriptor>src/assembly/src-zip.xml</descriptor>
- </descriptors>
- <tarLongFileMode>gnu</tarLongFileMode>
+ <parameter>
+ <overrideCompatibilityChangeParameters>
+ <overrideCompatibilityChangeParameter>
+ <compatibilityChange>METHOD_NEW_DEFAULT</compatibilityChange>
+ <binaryCompatible>true</binaryCompatible>
+ <sourceCompatible>true</sourceCompatible>
+ <semanticVersionLevel>PATCH</semanticVersionLevel>
+ </overrideCompatibilityChangeParameter>
+ </overrideCompatibilityChangeParameters>
+ </parameter>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-scm-publish-plugin</artifactId>
+ <artifactId>maven-jar-plugin</artifactId>
<configuration>
- <ignorePathsToDelete>
- <ignorePathToDelete>api-*</ignorePathToDelete>
- </ignorePathsToDelete>
+ <archive>
+ <manifestEntries>
+
<Automatic-Module-Name>${commons.module.name}</Automatic-Module-Name>
+ </manifestEntries>
+ </archive>
</configuration>
</plugin>
- <plugin>
- <groupId>com.github.siom79.japicmp</groupId>
- <artifactId>japicmp-maven-plugin</artifactId>
- <configuration>
- <parameter>
- <overrideCompatibilityChangeParameters>
- <overrideCompatibilityChangeParameter>
- <compatibilityChange>METHOD_NEW_DEFAULT</compatibilityChange>
- <binaryCompatible>true</binaryCompatible>
- <sourceCompatible>true</sourceCompatible>
- <semanticVersionLevel>PATCH</semanticVersionLevel>
- </overrideCompatibilityChangeParameter>
- </overrideCompatibilityChangeParameters>
- </parameter>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifestEntries>
-
<Automatic-Module-Name>${commons.module.name}</Automatic-Module-Name>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <sourcepath>src/main/java</sourcepath>
+ </configuration>
+ </plugin>
</plugins>
</build>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 57a6b388..5daf9fbb 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -182,6 +182,9 @@ The <action> type attribute can be add,update,fix,remove.
<action dev="ggregory" type="update" due-to="Gary Gregory, Dependabot">
Bump Apache Commons BCEL 6.5.0 to 6.7.0 #194.
</action>
+ <action type="update" dev="ggregory" due-to="Gary Gregory">
+ Bump commons-lang3 from 3.12.0 to 3.13.0.
+ </action>
</release>
<release version="2.11.1" date="2021-08-18" description="This is a
maintenance release (Java 8).">
<!-- FIX -->