- Update a dependency.

- Set new version.
This commit is contained in:
Lampros Smyrnaios 2024-01-15 13:54:12 +02:00
parent c4770ee716
commit 3909104a1b
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ plugins {
java { java {
group = 'eu.openaire.urls_worker' group = 'eu.openaire.urls_worker'
version = '2.1.7-SNAPSHOT' version = '2.1.8-SNAPSHOT'
sourceCompatibility = JavaVersion.VERSION_1_8 sourceCompatibility = JavaVersion.VERSION_1_8
} }
@ -39,7 +39,7 @@ dependencies {
exclude group: 'io.minio' // This is not used in the Worker, since it's the Controller which uploads the full-texts to S3. It also includes an older "commons-compress" version which causes problems. exclude group: 'io.minio' // This is not used in the Worker, since it's the Controller which uploads the full-texts to S3. It also includes an older "commons-compress" version which causes problems.
} }
implementation group: 'com.google.guava', name: 'guava', version: '32.1.3-jre' implementation group: 'com.google.guava', name: 'guava', version: '33.0.0-jre'
// https://mvnrepository.com/artifact/com.google.code.gson/gson // https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation 'com.google.code.gson:gson:2.10.1' implementation 'com.google.code.gson:gson:2.10.1'

View File

@ -11,7 +11,7 @@
# HTTP CONFIGURATION # HTTP CONFIGURATION
server.port = 1881 server.port = 1881
# Set the above value to < 0 >, in order to choose a random port (it will automatically choose a new random port, if the previously chosen is already in use).. # You can set the above value to < 0 >, in order to choose a random port (it will automatically choose a new random port, if the previously chosen is already in use)..
# Server api path # Server api path
server.servlet.context-path=/api server.servlet.context-path=/api