Skip to content

Commit d739aba

Browse files
authored
update bom and build (#16)
1 parent fd20414 commit d739aba

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/mvn.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
sudo make install
1616
- uses: actions/checkout@v2
1717
# Step that does that actual cache save and restore
18-
- uses: actions/cache@v1
18+
- uses: actions/cache@v4
1919
with:
2020
path: ~/.m2/repository
2121
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up JDK
2525
uses: actions/setup-java@v3
2626
with:
27-
java-version: '17.0.4+8'
27+
java-version: '21.0.2+13.0.LTS'
2828
distribution: 'adopt'
2929
- name: Build with mvn
3030
run: mvn -B -ntp clean install

generated/src/main/resources/pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.dockstore</groupId>
66
<artifactId>swagger-java-bitbucket-client</artifactId>
7-
<version>2.0.3-SNAPSHOT</version>
7+
<version>2.0.4-SNAPSHOT</version>
88
<licenses>
99
<license>
1010
<name>Apache Software License, Version 2.0</name>
@@ -21,13 +21,13 @@
2121
<dependency>
2222
<groupId>org.glassfish.jersey.core</groupId>
2323
<artifactId>jersey-client</artifactId>
24-
<version>3.0.9</version>
24+
<version>3.0.17</version>
2525
<scope>compile</scope>
2626
</dependency>
2727
<dependency>
2828
<groupId>org.glassfish.jersey.media</groupId>
2929
<artifactId>jersey-media-json-jackson</artifactId>
30-
<version>3.0.9</version>
30+
<version>3.0.17</version>
3131
<scope>compile</scope>
3232
<exclusions>
3333
<exclusion>
@@ -51,19 +51,19 @@
5151
<dependency>
5252
<groupId>org.glassfish.jersey.media</groupId>
5353
<artifactId>jersey-media-multipart</artifactId>
54-
<version>3.0.9</version>
54+
<version>3.0.17</version>
5555
<scope>compile</scope>
5656
</dependency>
5757
<dependency>
5858
<groupId>com.fasterxml.jackson.core</groupId>
5959
<artifactId>jackson-core</artifactId>
60-
<version>2.14.2</version>
60+
<version>2.18.2</version>
6161
<scope>compile</scope>
6262
</dependency>
6363
<dependency>
6464
<groupId>com.fasterxml.jackson.core</groupId>
6565
<artifactId>jackson-annotations</artifactId>
66-
<version>2.14.2</version>
66+
<version>2.18.2</version>
6767
<scope>compile</scope>
6868
<exclusions>
6969
<exclusion>
@@ -75,7 +75,7 @@
7575
<dependency>
7676
<groupId>com.fasterxml.jackson.core</groupId>
7777
<artifactId>jackson-databind</artifactId>
78-
<version>2.14.2</version>
78+
<version>2.18.2</version>
7979
<scope>compile</scope>
8080
<exclusions>
8181
<exclusion>
@@ -87,19 +87,19 @@
8787
<dependency>
8888
<groupId>jakarta.ws.rs</groupId>
8989
<artifactId>jakarta.ws.rs-api</artifactId>
90-
<version>3.0.0</version>
90+
<version>3.1.0</version>
9191
<scope>compile</scope>
9292
</dependency>
9393
<dependency>
9494
<groupId>org.glassfish.jersey.core</groupId>
9595
<artifactId>jersey-common</artifactId>
96-
<version>3.0.9</version>
96+
<version>3.0.17</version>
9797
<scope>compile</scope>
9898
</dependency>
9999
<dependency>
100100
<groupId>com.fasterxml.jackson.datatype</groupId>
101101
<artifactId>jackson-datatype-jsr310</artifactId>
102-
<version>2.14.2</version>
102+
<version>2.18.2</version>
103103
<scope>compile</scope>
104104
</dependency>
105105
</dependencies>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<properties>
1212
<github.url>scm:git:[email protected]:dockstore/swagger-java-bitbucket-client.git</github.url>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14-
<dockstore-core.version>1.15.0-prealpha.1</dockstore-core.version>
14+
<dockstore-core.version>1.17.0</dockstore-core.version>
1515
<maven-failsafe.version>2.21.0</maven-failsafe.version>
1616
<maven-surefire.version>2.21.0</maven-surefire.version>
1717
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
@@ -233,7 +233,7 @@
233233
<plugin>
234234
<groupId>com.github.spotbugs</groupId>
235235
<artifactId>spotbugs-maven-plugin</artifactId>
236-
<version>4.5.3.0</version>
236+
<version>4.9.3.0</version>
237237
</plugin>
238238
<plugin>
239239
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)