Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hegeaal committed Mar 13, 2024
1 parent 9346047 commit a6d7da2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
20 changes: 13 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.4</version>
<version>3.2.3</version>
<relativePath/>
</parent>

Expand All @@ -29,7 +29,7 @@
<maven.exec.skip>false</maven.exec.skip>
<!--end standard properties-->

<kotlin.version>1.9.10</kotlin.version>
<kotlin.version>1.9.20</kotlin.version>
<jena.version>4.9.0</jena.version>

</properties>
Expand Down Expand Up @@ -86,8 +86,14 @@
</dependency>
<dependency>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<version>3.2.0</version>
<artifactId>wiremock-standalone</artifactId>
<version>3.4.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -170,7 +176,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.10</version>
<version>0.8.11</version>
<executions>
<execution>
<id>before-unit-test-execution</id>
Expand Down Expand Up @@ -228,7 +234,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.5</version>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
<argLine>${surefire.jacoco.args}</argLine>
Expand All @@ -242,7 +248,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.5</version>
<configuration>
<argLine>${failsafe.jacoco.args}</argLine>
<groups>contract</groups>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ server.port: 8080
spring:
config.activate.on-profile: contract-test
application:
dataServiceCatalogsUri: http://localhost:5000/catalogs
dataServiceCatalogsUri: http://localhost:5050/catalogs
2 changes: 1 addition & 1 deletion src/test/kotlin/no/fdk/endpoints/utils/ApiTestContext.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ abstract class ApiTestContext {
startMockServer()

try {
val con = URL("http://localhost:5000/ping").openConnection() as HttpURLConnection
val con = URL("http://localhost:5050/ping").openConnection() as HttpURLConnection
con.connect()
if (con.responseCode != 200) {
logger.debug("Ping to mock server failed")
Expand Down
2 changes: 1 addition & 1 deletion src/test/kotlin/no/fdk/endpoints/utils/TestData.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package no.fdk.endpoints.utils
import no.fdk.endpoints.model.Endpoint
import no.fdk.endpoints.model.Environment

const val LOCAL_SERVER_PORT = 5000
const val LOCAL_SERVER_PORT = 5050

val PROD_0 = Endpoint(
apiRef = "https://staging.fellesdatakatalog.digdir.no/dataservices/db38e789-51cc-3ff4-b55a-6ec94f6f711d",
Expand Down

0 comments on commit a6d7da2

Please sign in to comment.