Skip to content

Commit

Permalink
Merge branch 'version/1.8.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
rnschk committed Oct 13, 2023
2 parents 80cc873 + ca3f1c1 commit 281ac1e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 1.8
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
java-version: '17'
cache: 'maven'
- name: Build with Maven
run: mvn -B verify --file pom.xml
2 changes: 1 addition & 1 deletion .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
java-version: '17'
cache: 'maven'
server-id: ossrh
server-username: MAVEN_USERNAME
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
java-version: '17'
cache: 'maven'
server-id: ossrh
server-username: MAVEN_USERNAME
Expand Down
12 changes: 10 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<description>This tool helps to control the retry-behaviour in external-task-handlers
based on the official java-client provided by Camunda BPM
</description>
<version>1.8.0</version>
<version>1.8.1</version>
<inceptionYear>2021</inceptionYear>

<organization>
Expand Down Expand Up @@ -45,8 +45,9 @@

<!-- plugins -->
<maven-release.version>3.0.1</maven-release.version>
<maven-source.version>3.3.0</maven-source.version>
<maven-source.version>3.2.1</maven-source.version>
<maven-compiler.version>3.11.0</maven-compiler.version>
<maven-surefire.version>3.1.2</maven-surefire.version>
<license-maven.version>4.2</license-maven.version>
<maven-javadoc.version>3.5.0</maven-javadoc.version>
<maven-gpg.version>3.1.0</maven-gpg.version>
Expand Down Expand Up @@ -176,6 +177,7 @@
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
Expand All @@ -193,6 +195,12 @@
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire.version}</version>
</plugin>

<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
Expand Down

0 comments on commit 281ac1e

Please sign in to comment.