Skip to content

Commit

Permalink
Merge branch 'develop' into dependabot/maven/pepper-lib/commons-io-co…
Browse files Browse the repository at this point in the history
…mmons-io-2.7
  • Loading branch information
thomaskrause authored Nov 26, 2024
2 parents b96ef48 + 498bf57 commit 1d81cfc
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: Deploy as P2 repository
# Only run Job on tagged commits that start with "v"
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v1
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ on: push
jobs:
test_java8:
name: Execute all automated tests on Java 8
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Cache local Maven repository
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-java8-${{ hashFiles('**/pom.xml') }}
Expand All @@ -21,12 +21,12 @@ jobs:
run: mvn install
test_java11:
name: Execute all automated tests on Java 11
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Cache local Maven repository
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-java11-${{ hashFiles('**/pom.xml') }}
Expand All @@ -35,4 +35,4 @@ jobs:
- name: Set JAVA_HOME to included JDK 11
run: echo JAVA_HOME=$JAVA_HOME_11_X64 >> $GITHUB_ENV
- name: Run Maven install (includes tests)
run: mvn install
run: mvn install
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- Update some dependencies for better compatibility with newer Java versions
- Update logging implementation to fix security issues and compatibility with newer Eclipse releases

## [3.6.0] - 2021-03-01

Expand Down
2 changes: 1 addition & 1 deletion pepper-doc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<groupId>org.corpus-tools</groupId>
<artifactId>pepper</artifactId>
<relativePath>../pom.xml</relativePath>
<version>3.6.1</version>
<version>3.7.0-SNAPSHOT</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion pepper-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>org.corpus-tools</groupId>
<artifactId>pepper</artifactId>
<version>3.6.1</version>
<version>3.7.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<description>This project contains the core of Pepper.</description>
Expand Down
6 changes: 3 additions & 3 deletions pepper-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.corpus-tools</groupId>
<artifactId>pepper</artifactId>
<version>3.6.1</version>
<version>3.7.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<dependencies>
Expand All @@ -32,12 +32,12 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.13</version>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.0.13</version>
<version>1.2.9</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pepper-newModule/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.corpus-tools</groupId>
<artifactId>pepper-parentModule</artifactId>
<version>3.6.1</version>
<version>3.7.0-SNAPSHOT</version>
<relativePath>../pepper-parentModule/pom.xml</relativePath>
</parent>
<artifactId>pepper-newModule</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pepper-parentModule/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.corpus-tools</groupId>
<artifactId>pepper</artifactId>
<version>3.6.1</version>
<version>3.7.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.corpus-tools</groupId>
<artifactId>pepper</artifactId>
<version>3.6.1</version>
<version>3.7.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>pepper-framework</module>
Expand Down Expand Up @@ -104,7 +104,7 @@
<!-- versions of dependencies -->
<salt.version>3.4.2</salt.version>
<commons-lang3.version>3.4</commons-lang3.version>
<slf4j.version>1.7.5</slf4j.version>
<slf4j.version>2.0.16</slf4j.version>
<junit.version>4.13.1</junit.version>
<assertj.version>2.4.1</assertj.version>
<mockito.version>1.10.19</mockito.version>
Expand Down

0 comments on commit 1d81cfc

Please sign in to comment.