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-dbutils.git
The following commit(s) were added to refs/heads/master by this push:
new ec99fb1 Bump Java from 8 to 11
ec99fb1 is described below
commit ec99fb12de045609ba404b1bcfd58e9dcea249a7
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Oct 15 09:35:53 2023 -0400
Bump Java from 8 to 11
---
.github/workflows/coverage.yml | 2 +-
.github/workflows/maven.yml | 2 +-
pom.xml | 14 ++++++++------
src/changes/changes.xml | 5 ++++-
4 files changed, 14 insertions(+), 9 deletions(-)
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 779e132..f1b77c4 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- java: [ 8 ]
+ java: [ 11 ]
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 6498c2a..9ae2a49 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -27,7 +27,7 @@ jobs:
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
- java: [ 8, 11, 17, 21 ]
+ java: [ 11, 17, 21 ]
experimental: [false]
# include:
# - java: 22-ea
diff --git a/pom.xml b/pom.xml
index a16b5b9..2c9ad56 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>commons-dbutils</groupId>
<artifactId>commons-dbutils</artifactId>
- <version>1.8.2-SNAPSHOT</version>
+ <version>1.9.0-SNAPSHOT</version>
<name>Apache Commons DbUtils</name>
<inceptionYear>2002</inceptionYear>
@@ -249,24 +249,26 @@
</distributionManagement>
<properties>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
+ <maven.compiler.source>11</maven.compiler.source>
+ <maven.compiler.target>11</maven.compiler.target>
+ <maven.compiler.release>11</maven.compiler.release>
<checkstyle.header.file>${basedir}/src/conf/checkstyle/checkstyle-header.txt</checkstyle.header.file>
<checkstyle.config.file>${basedir}/src/conf/checkstyle/checkstyle.xml</checkstyle.config.file>
<commons.componentid>dbutils</commons.componentid>
<commons.packageId>dbutils</commons.packageId>
- <commons.release.version>1.8.1</commons.release.version>
+ <commons.release.version>1.9.0</commons.release.version>
<commons.rc.version>RC1</commons.rc.version>
- <commons.bc.version>1.8.0</commons.bc.version>
+ <commons.bc.version>1.8.1</commons.bc.version>
<commons.jira.id>DBUTILS</commons.jira.id>
<commons.jira.pid>12310470</commons.jira.pid>
<commons.release.isDistModule>true</commons.release.isDistModule>
</properties>
<build>
- <defaultGoal>clean install apache-rat:check japicmp:cmp checkstyle:check
spotbugs:check pmd:check pmd:cpd-check javadoc:javadoc</defaultGoal>
+ <!-- clean before javadoc:javadoc somehow help javadoc not blow up. -->
+ <defaultGoal>clean install apache-rat:check japicmp:cmp checkstyle:check
spotbugs:check pmd:check pmd:cpd-check clean javadoc:javadoc</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 96145a6..988b15e 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -43,10 +43,13 @@ The <action> type attribute can be add,update,fix,remove.
<title>Apache Commons DBUtils Release Notes</title>
</properties>
<body>
- <release version="1.8.2" date="20YY-MM-DD" description="New features and
bug fixes.">
+ <release version="1.9.0" date="20YY-MM-DD" description="New features and
bug fixes.">
<!-- FIX -->
<!-- ADD -->
<!-- UPDATE -->
+ <action dev="ggregory" type="update" due-to="Gary Gregory">
+ Bump Java from 8 to 11.
+ </action>
<action dev="ggregory" type="update" due-to="Gary Gregory">
Bump commons-parent from 62 to 64.
</action>