Skip to content

Commit

Permalink
Dependabot 202110 (#349)
Browse files Browse the repository at this point in the history
* Bump maven-gpg-plugin from 1.6 to 3.0.1 (#347)

* Bump maven-source-plugin from 3.1.0 to 3.2.1 (#343)

* -jdk9 ci, bump pom snapshot version

* Bump maven-jar-plugin from 3.1.0 to 3.2.0 (#345)

* Bump maven-bundle-plugin from 3.5.1 to 5.1.2 (#346)

* Bump junit-jupiter-engine from 5.8.0 to 5.8.1 (#344)

* won't work

* exclude jdk-9

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ronma <ronma@>
  • Loading branch information
ronmamo and dependabot[bot] committed Oct 7, 2021
1 parent b7e8f9a commit e9ed4e1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/maven-ci.yml
Expand Up @@ -14,8 +14,9 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ '8', '9', '11', '13', '15', '17']
os: [ ubuntu-latest ]
# todo re-add jdk '9' after missing certificate issue on ubuntu is resolved
java: [ '8', '11', '13', '15', '17']
os: [ ubuntu-latest, windows-latest ]
name: Java ${{ matrix.Java }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Expand Up @@ -4,7 +4,7 @@

<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.10.1-SNAPSHOT</version>
<version>0.11-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Reflections</name>
Expand Down Expand Up @@ -112,7 +112,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.8.0</version>
<version>5.8.1</version>
<scope>test</scope>
</dependency>

Expand All @@ -139,7 +139,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -165,7 +165,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down Expand Up @@ -204,7 +204,7 @@
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.5.1</version>
<version>5.1.2</version>
<executions>
<execution>
<id>bundle-manifest</id>
Expand All @@ -228,7 +228,7 @@
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
Expand Down

0 comments on commit e9ed4e1

Please sign in to comment.