Skip to content

Commit 721d5c3

Browse files
authored
fix: project configuration (#2)
Signed-off-by: Cesar Berrospi Ramis <[email protected]>
1 parent df1d3a7 commit 721d5c3

File tree

3 files changed

+4
-36
lines changed

3 files changed

+4
-36
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
java-version: ['11', '17', '21', '24']
22+
java-version: ['21', '23', '24']
2323
steps:
2424
- name: Checkout repository
2525
uses: actions/checkout@v4

.releaserc

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
[
1616
"@semantic-release/git",
1717
{
18-
"assets" : [ "pom.xml", "CHANGELOG.md" ],
19-
"message": "chore(release): bump ${nextRelease.version}\n\n${nextRelease.notes}"
18+
"assets" : [ "CHANGELOG.md" ],
19+
"message": "chore(release): ${nextRelease.version} release notes\n\n${nextRelease.notes}"
2020
}
2121
],
2222
"@semantic-release/github"

pom.xml

+1-33
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<checkstyle-plugin-version>3.3.0</checkstyle-plugin-version>
1616
<checkstyle-version>10.21.4</checkstyle-version>
1717
<jacoco-plugin-version>0.8.10</jacoco-plugin-version>
18-
<compiler-plugin-version>3.11.0</compiler-plugin-version>
18+
<compiler-plugin-version>3.14.0</compiler-plugin-version>
1919
<java-source-version>21</java-source-version>
2020
<java-target-version>21</java-target-version>
2121
<maven-enforcer-version>3.4.1</maven-enforcer-version>
@@ -166,26 +166,6 @@
166166
</execution>
167167
</executions>
168168
</plugin>
169-
<plugin>
170-
<groupId>org.apache.maven.plugins</groupId>
171-
<artifactId>maven-javadoc-plugin</artifactId>
172-
<version>3.0.1</version>
173-
<configuration>
174-
<show>public</show>
175-
<doctitle>${project.name}, version ${project.version}</doctitle>
176-
<footer>IBM Corporation</footer>
177-
<source>8</source>
178-
<detectJavaApiLink>false</detectJavaApiLink>
179-
</configuration>
180-
<executions>
181-
<execution>
182-
<id>attach-javadocs</id>
183-
<goals>
184-
<goal>jar</goal>
185-
</goals>
186-
</execution>
187-
</executions>
188-
</plugin>
189169
<plugin>
190170
<groupId>org.apache.maven.plugins</groupId>
191171
<artifactId>maven-checkstyle-plugin</artifactId>
@@ -303,18 +283,6 @@
303283
</execution>
304284
</executions>
305285
</plugin>
306-
<plugin>
307-
<inherited>true</inherited>
308-
<artifactId>maven-javadoc-plugin</artifactId>
309-
<executions>
310-
<execution>
311-
<id>attach-javadocs</id>
312-
<goals>
313-
<goal>jar</goal>
314-
</goals>
315-
</execution>
316-
</executions>
317-
</plugin>
318286
<plugin>
319287
<inherited>true</inherited>
320288
<artifactId>maven-deploy-plugin</artifactId>

0 commit comments

Comments
 (0)