Skip to content

Commit

Permalink
#126: fix gradle warnings about usage of deprecated parts
Browse files Browse the repository at this point in the history
  • Loading branch information
Sabrina Wullschleger committed Mar 8, 2024
1 parent feef726 commit 6ab45c7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ allprojects {

repositories {
mavenLocal()
maven { url "http://jars.interlis.ch" }
maven { url "https://jars.interlis.ch" }
maven { url "https://repo.osgeo.org/repository/release/" }
mavenCentral()
maven { url "https://s01.oss.sonatype.org/service/local/repositories/releases/content/" }
Expand Down
2 changes: 1 addition & 1 deletion docs/user/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ apply plugin: 'ch.so.agi.gretl'
buildscript {
repositories {
maven { url "http://jars.interlis.ch" }
maven { url "https://jars.interlis.ch" }
maven { url "http://jars.umleditor.org" }
maven { url "https://repo.osgeo.org/repository/release/" }
maven { url "https://plugins.gradle.org/m2/" }
Expand Down
13 changes: 9 additions & 4 deletions gretl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ configurations {
exclude group: 'org.apache.hadoop', module: 'hadoop-core' // Konflikt zwischen "core" und "client". Siehe iox-parquet.
exclude group: 'org.slf4j', module: 'slf4j-reload4j'
}

integrationTestImplementation.extendsFrom implementation
integrationTestImplementation.extendsFrom testImplementation
integrationTestImplementation.extendsFrom runtime
integrationTestImplementation.extendsFrom testRuntime

all*.exclude module: 'spring-boot-starter-logging'

Expand Down Expand Up @@ -169,14 +174,14 @@ dependencies {
* Provides, at compile-time, the dependencies that both _main_ and _test_ require in order
* to successfully compile.
*/
integrationTestImplementation configurations.implementation
integrationTestImplementation configurations.testImplementation
/*integrationTestImplementation configurations.implementation
integrationTestImplementation configurations.testImplementation*/

/**
* Provides, at run-time, the dependencies that both _main_ and _test_ require to run.
*/
integrationTestImplementation configurations.runtime
integrationTestImplementation configurations.testRuntime
/*integrationTestImplementation configurations.runtime
integrationTestImplementation configurations.testRuntime*/

testImplementation 'org.apache.tomcat.embed:tomcat-embed-core:9.0.69'

Expand Down
2 changes: 1 addition & 1 deletion gretl/src/integrationTest/jobs/init.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ allprojects {
buildscript {
repositories {
mavenLocal()
maven { url "http://jars.interlis.ch" }
maven { url "https://jars.interlis.ch" }
maven { url "https://repo.osgeo.org/repository/release/" }
maven { url "https://s01.oss.sonatype.org/service/local/repositories/snapshots/content/" }
mavenCentral()
Expand Down

0 comments on commit 6ab45c7

Please sign in to comment.