Skip to content

Commit 1d81cfc

Browse files
authored
Merge branch 'develop' into dependabot/maven/pepper-lib/commons-io-commons-io-2.7
2 parents b96ef48 + 498bf57 commit 1d81cfc

File tree

9 files changed

+16
-15
lines changed

9 files changed

+16
-15
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
name: Deploy as P2 repository
77
# Only run Job on tagged commits that start with "v"
88
if: startsWith(github.ref, 'refs/tags/v')
9-
runs-on: ubuntu-18.04
9+
runs-on: ubuntu-22.04
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v1

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ on: push
44
jobs:
55
test_java8:
66
name: Execute all automated tests on Java 8
7-
runs-on: ubuntu-18.04
7+
runs-on: ubuntu-22.04
88
steps:
99
- name: Checkout
1010
uses: actions/checkout@v1
1111
- name: Cache local Maven repository
12-
uses: actions/cache@v2
12+
uses: actions/cache@v4
1313
with:
1414
path: ~/.m2/repository
1515
key: ${{ runner.os }}-java8-${{ hashFiles('**/pom.xml') }}
@@ -21,12 +21,12 @@ jobs:
2121
run: mvn install
2222
test_java11:
2323
name: Execute all automated tests on Java 11
24-
runs-on: ubuntu-18.04
24+
runs-on: ubuntu-22.04
2525
steps:
2626
- name: Checkout
2727
uses: actions/checkout@v1
2828
- name: Cache local Maven repository
29-
uses: actions/cache@v2
29+
uses: actions/cache@v4
3030
with:
3131
path: ~/.m2/repository
3232
key: ${{ runner.os }}-java11-${{ hashFiles('**/pom.xml') }}
@@ -35,4 +35,4 @@ jobs:
3535
- name: Set JAVA_HOME to included JDK 11
3636
run: echo JAVA_HOME=$JAVA_HOME_11_X64 >> $GITHUB_ENV
3737
- name: Run Maven install (includes tests)
38-
run: mvn install
38+
run: mvn install

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
### Fixed
1010

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

1314
## [3.6.0] - 2021-03-01
1415

pepper-doc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<groupId>org.corpus-tools</groupId>
1010
<artifactId>pepper</artifactId>
1111
<relativePath>../pom.xml</relativePath>
12-
<version>3.6.1</version>
12+
<version>3.7.0-SNAPSHOT</version>
1313
</parent>
1414

1515
<properties>

pepper-framework/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>org.corpus-tools</groupId>
99
<artifactId>pepper</artifactId>
10-
<version>3.6.1</version>
10+
<version>3.7.0-SNAPSHOT</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313
<description>This project contains the core of Pepper.</description>

pepper-lib/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.corpus-tools</groupId>
88
<artifactId>pepper</artifactId>
9-
<version>3.6.1</version>
9+
<version>3.7.0-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>
@@ -32,12 +32,12 @@
3232
<dependency>
3333
<groupId>ch.qos.logback</groupId>
3434
<artifactId>logback-classic</artifactId>
35-
<version>1.0.13</version>
35+
<version>1.2.0</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>ch.qos.logback</groupId>
3939
<artifactId>logback-core</artifactId>
40-
<version>1.0.13</version>
40+
<version>1.2.9</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>commons-io</groupId>

pepper-newModule/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.corpus-tools</groupId>
55
<artifactId>pepper-parentModule</artifactId>
6-
<version>3.6.1</version>
6+
<version>3.7.0-SNAPSHOT</version>
77
<relativePath>../pepper-parentModule/pom.xml</relativePath>
88
</parent>
99
<artifactId>pepper-newModule</artifactId>

pepper-parentModule/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.corpus-tools</groupId>
55
<artifactId>pepper</artifactId>
6-
<version>3.6.1</version>
6+
<version>3.7.0-SNAPSHOT</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.corpus-tools</groupId>
66
<artifactId>pepper</artifactId>
7-
<version>3.6.1</version>
7+
<version>3.7.0-SNAPSHOT</version>
88
<packaging>pom</packaging>
99
<modules>
1010
<module>pepper-framework</module>
@@ -104,7 +104,7 @@
104104
<!-- versions of dependencies -->
105105
<salt.version>3.4.2</salt.version>
106106
<commons-lang3.version>3.4</commons-lang3.version>
107-
<slf4j.version>1.7.5</slf4j.version>
107+
<slf4j.version>2.0.16</slf4j.version>
108108
<junit.version>4.13.1</junit.version>
109109
<assertj.version>2.4.1</assertj.version>
110110
<mockito.version>1.10.19</mockito.version>

0 commit comments

Comments
 (0)