Skip to content

Commit cdba389

Browse files
committed
update bom and build
1 parent c58355b commit cdba389

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
@@ -19,7 +19,7 @@
1919
<modelVersion>4.0.0</modelVersion>
2020
<groupId>io.dockstore</groupId>
2121
<artifactId>swagger-java-discourse-client</artifactId>
22-
<version>2.0.1</version>
22+
<version>2.0.2-SNAPSHOT</version>
2323
<licenses>
2424
<license>
2525
<name>Apache Software License, Version 2.0</name>
@@ -36,13 +36,13 @@
3636
<dependency>
3737
<groupId>org.glassfish.jersey.core</groupId>
3838
<artifactId>jersey-client</artifactId>
39-
<version>3.0.9</version>
39+
<version>3.0.17</version>
4040
<scope>compile</scope>
4141
</dependency>
4242
<dependency>
4343
<groupId>org.glassfish.jersey.media</groupId>
4444
<artifactId>jersey-media-json-jackson</artifactId>
45-
<version>3.0.9</version>
45+
<version>3.0.17</version>
4646
<scope>compile</scope>
4747
<exclusions>
4848
<exclusion>
@@ -66,19 +66,19 @@
6666
<dependency>
6767
<groupId>org.glassfish.jersey.media</groupId>
6868
<artifactId>jersey-media-multipart</artifactId>
69-
<version>3.0.9</version>
69+
<version>3.0.17</version>
7070
<scope>compile</scope>
7171
</dependency>
7272
<dependency>
7373
<groupId>com.fasterxml.jackson.core</groupId>
7474
<artifactId>jackson-core</artifactId>
75-
<version>2.14.2</version>
75+
<version>2.18.2</version>
7676
<scope>compile</scope>
7777
</dependency>
7878
<dependency>
7979
<groupId>com.fasterxml.jackson.core</groupId>
8080
<artifactId>jackson-annotations</artifactId>
81-
<version>2.14.2</version>
81+
<version>2.18.2</version>
8282
<scope>compile</scope>
8383
<exclusions>
8484
<exclusion>
@@ -90,7 +90,7 @@
9090
<dependency>
9191
<groupId>com.fasterxml.jackson.core</groupId>
9292
<artifactId>jackson-databind</artifactId>
93-
<version>2.14.2</version>
93+
<version>2.18.2</version>
9494
<scope>compile</scope>
9595
<exclusions>
9696
<exclusion>
@@ -102,19 +102,19 @@
102102
<dependency>
103103
<groupId>jakarta.ws.rs</groupId>
104104
<artifactId>jakarta.ws.rs-api</artifactId>
105-
<version>3.0.0</version>
105+
<version>3.1.0</version>
106106
<scope>compile</scope>
107107
</dependency>
108108
<dependency>
109109
<groupId>org.glassfish.jersey.core</groupId>
110110
<artifactId>jersey-common</artifactId>
111-
<version>3.0.9</version>
111+
<version>3.0.17</version>
112112
<scope>compile</scope>
113113
</dependency>
114114
<dependency>
115115
<groupId>com.fasterxml.jackson.datatype</groupId>
116116
<artifactId>jackson-datatype-jsr310</artifactId>
117-
<version>2.14.2</version>
117+
<version>2.18.2</version>
118118
<scope>compile</scope>
119119
</dependency>
120120
</dependencies>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<properties>
2727
<github.url>scm:git:git@github.com:dockstore/swagger-java-discourse-client.git</github.url>
2828
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
29-
<dockstore-core.version>1.15.0-prealpha.1</dockstore-core.version>
29+
<dockstore-core.version>1.17.0</dockstore-core.version>
3030
<maven-failsafe.version>2.21.0</maven-failsafe.version>
3131
<maven-surefire.version>2.21.0</maven-surefire.version>
3232
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
@@ -248,7 +248,7 @@
248248
<plugin>
249249
<groupId>com.github.spotbugs</groupId>
250250
<artifactId>spotbugs-maven-plugin</artifactId>
251-
<version>4.5.3.0</version>
251+
<version>4.9.3.0</version>
252252
</plugin>
253253
<plugin>
254254
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)