Skip to content

Commit

Permalink
WIP for upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Apr 4, 2024
1 parent 5d8f37c commit 3c3bc25
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.6</version>
<version>2.7.18</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
Expand Down Expand Up @@ -32,7 +32,7 @@
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>oauth2-oidc-sdk</artifactId>
<version>9.5</version>
<version>9.43.3</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand All @@ -46,7 +46,7 @@
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.9.3</version>
<version>4.12.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
<dependency>
Expand All @@ -73,7 +73,7 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.68</version>
<version>1.70</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -85,19 +85,19 @@
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>4.2.0</version>
<version>4.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>json-path</artifactId>
<version>4.2.0</version>
<version>4.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>xml-path</artifactId>
<version>4.2.0</version>
<version>4.5.1</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.github.tomakehurst/wiremock -->
Expand All @@ -117,15 +117,15 @@
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>4.0.2</version>
<version>4.9.10</version>
<configuration>
<useNativeGit>true</useNativeGit>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.5</version>
<version>0.8.11</version>
<executions>
<execution>
<goals>
Expand All @@ -144,7 +144,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.3.0</version>
<version>3.4.1</version>
<executions>
<execution>
<id>enforce-versions</id>
Expand All @@ -166,7 +166,7 @@
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav-jackrabbit</artifactId>
<version>3.3.4</version>
<version>3.5.3</version>
</extension>
</extensions>
</build>
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/generiek/GenericApplicationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ class GenericApplicationTest {

@Test
void main() {
GenericApplication.main(new String[]{"--server.port=8088"});
RestAssured.port = 8088;
GenericApplication.main(new String[]{"--server.port=8082"});
RestAssured.port = 8082;
given()
.when()
.get("/internal/health")
Expand Down

0 comments on commit 3c3bc25

Please sign in to comment.