Skip to content

Commit f6e11fb

Browse files
committed
Merge branch 'develop'
2 parents 5b2f2c7 + 1f38834 commit f6e11fb

File tree

14 files changed

+23
-22
lines changed

14 files changed

+23
-22
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

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ This project includes:
2727
Aether Transport HTTP under Eclipse Public License, Version 1.0
2828
Aether Transport Wagon under Eclipse Public License, Version 1.0
2929
Aether Utilities under Eclipse Public License, Version 1.0
30+
Apache Commons IO under Apache-2.0
3031
Apache Commons Lang under Apache License, Version 2.0
3132
Apache HttpClient under Apache License
3233
Apache HttpClient Cache under Apache License
@@ -41,7 +42,6 @@ This project includes:
4142
Common Eclipse Runtime under Eclipse Public License - v 1.0
4243
Commons Codec under The Apache Software License, Version 2.0
4344
Commons Compiler under New BSD License
44-
Commons IO under The Apache Software License, Version 2.0
4545
Commons Logging under The Apache Software License, Version 2.0
4646
Core Runtime under Eclipse Public License - v 1.0
4747
Declarative Services under Eclipse Public License

pepper-doc/NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ carefully, which should be located in the corresponding jar-files
1818
inside the folders plugins or lib.
1919

2020
This project includes:
21+
Apache Commons IO under Apache-2.0
2122
Apache Commons Lang under Apache License, Version 2.0
2223
AssertJ fluent assertions under Apache License, Version 2.0
2324
carrot-osgi-anno-scr-core under The BSD License
2425
carrot-osgi-anno-scr-make under The BSD License
25-
Commons IO under The Apache Software License, Version 2.0
2626
Guava: Google Core Libraries for Java under The Apache Software License, Version 2.0
2727
Hamcrest Core under New BSD License
2828
Java Architecture for XML Binding under CDDL 1.1 or GPL2 w/ CPE

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</version>
1313
</parent>
1414

1515
<properties>

pepper-framework/NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ carefully, which should be located in the corresponding jar-files
1818
inside the folders plugins or lib.
1919

2020
This project includes:
21+
Apache Commons IO under Apache-2.0
2122
Apache Commons Lang under Apache License, Version 2.0
2223
AssertJ fluent assertions under Apache License, Version 2.0
2324
carrot-osgi-anno-scr-core under The BSD License
2425
carrot-osgi-anno-scr-make under The BSD License
25-
Commons IO under The Apache Software License, Version 2.0
2626
Guava: Google Core Libraries for Java under The Apache Software License, Version 2.0
2727
Hamcrest Core under New BSD License
2828
Java Architecture for XML Binding under CDDL 1.1 or GPL2 w/ CPE

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</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313
<description>This project contains the core of Pepper.</description>

pepper-lib/NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ This project includes:
2727
Aether Transport HTTP under Eclipse Public License, Version 1.0
2828
Aether Transport Wagon under Eclipse Public License, Version 1.0
2929
Aether Utilities under Eclipse Public License, Version 1.0
30+
Apache Commons IO under Apache-2.0
3031
Apache Commons Lang under Apache License, Version 2.0
3132
Apache HttpClient under Apache License
3233
Apache HttpClient Cache under Apache License
@@ -41,7 +42,6 @@ This project includes:
4142
Common Eclipse Runtime under Eclipse Public License - v 1.0
4243
Commons Codec under The Apache Software License, Version 2.0
4344
Commons Compiler under New BSD License
44-
Commons IO under The Apache Software License, Version 2.0
4545
Commons Logging under The Apache Software License, Version 2.0
4646
Core Runtime under Eclipse Public License - v 1.0
4747
Declarative Services under Eclipse Public License

pepper-lib/pom.xml

Lines changed: 4 additions & 4 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</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<dependencies>
@@ -32,17 +32,17 @@
3232
<dependency>
3333
<groupId>ch.qos.logback</groupId>
3434
<artifactId>logback-classic</artifactId>
35-
<version>1.0.13</version>
35+
<version>1.3.14</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.3.14</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>commons-io</groupId>
4444
<artifactId>commons-io</artifactId>
45-
<version>2.4</version>
45+
<version>2.18.0</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>org.codehaus.janino</groupId>

0 commit comments

Comments
 (0)