1
0

Fix build for GitHub

- Bump actions/checkout from v2.3.1 to v2.3.4 (#24)
- Bump actions/setup-java from v1.4.0 to v1.4.3 (#21)
- Add default goal with some TODOs.
This commit is contained in:
Gary Gregory
2020-12-14 14:20:52 -05:00
parent 5d9cbdd720
commit 33c33e6b80
3 changed files with 25 additions and 1 deletions

View File

@@ -43,4 +43,4 @@ jobs:
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -V --no-transfer-progress apache-rat:check spotbugs:check javadoc:javadoc -Ddoclint=all package --file pom.xml
run: mvn -V --no-transfer-progress -Ddoclint=all --file pom.xml

17
pom.xml
View File

@@ -177,6 +177,8 @@ under the License.
</scm>
<build>
<!-- TODO spotbugs:check japicmp:cmp -->
<defaultGoal>apache-rat:check javadoc:javadoc package</defaultGoal>
<plugins>
<!--
@@ -442,6 +444,19 @@ under the License.
</configuration>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>${spotbugs.plugin.version}</version>
<dependencies>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>${spotbugs.impl.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
@@ -545,6 +560,8 @@ under the License.
<!-- The RC version used in the staging repository URL. -->
<commons.rc.version>RC2</commons.rc.version>
<commons.surefire.version>2.12</commons.surefire.version>
<spotbugs.plugin.version>4.1.4</spotbugs.plugin.version>
<spotbugs.impl.version>4.2.0</spotbugs.impl.version>
<skipSurefireReport>true</skipSurefireReport>
<!-- Allow default test run order to be changed -->
<failsafe.runorder>filesystem</failsafe.runorder>

View File

@@ -50,6 +50,13 @@ The <action> type attribute can be add,update,fix,remove.
<action issue="LOGGING-163" dev="ggregory" type="fix" due-to="Kaloyan Spiridonov">
BufferedReader is not closed properly.
</action>
<!-- UPDATES -->
<action dev="ggregory" type="update" due-to="Dependabot">
Bump actions/checkout from v2.3.1 to v2.3.4 (#24).
</action>
<action dev="ggregory" type="update" due-to="Dependabot">
Bump actions/setup-java from v1.4.0 to v1.4.3 (#21).
</action>
</release>
<release version="1.2" date="2014-07-11" description="This is a maintenance release containing bug fixes. Java 1.2 or later is required.">
<action issue="LOGGING-37" dev="tn" type="fix" due-to="Matthias Ernst,Archie Cobbs">