Skip to content

Commit

Permalink
Use local mvn repo to get changes for opengis-migration
Browse files Browse the repository at this point in the history
  • Loading branch information
sebr72 committed Aug 23, 2023
1 parent 3e1c446 commit a23e2fa
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
buildscript {
repositories {
mavenLocal()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
Expand Down
5 changes: 5 additions & 0 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ apply plugin: 'distribution'
defaultTasks 'build'

repositories {
mavenLocal() {
content {
excludeModule("javax.media", "jai_core")
}
}
mavenCentral {
content {
excludeModule("javax.media", "jai_core")
Expand Down
5 changes: 5 additions & 0 deletions docs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ apply plugin: 'idea'
defaultTasks 'build'

repositories {
mavenLocal() {
content {
excludeModule("javax.media", "jai_core")
}
}
mavenCentral {
content {
excludeModule("javax.media", "jai_core")
Expand Down
5 changes: 5 additions & 0 deletions examples/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import org.gradle.api.tasks.testing.logging.TestLogEvent

repositories {
mavenLocal() {
content {
excludeModule("javax.media", "jai_core")
}
}
mavenCentral {
content {
excludeModule("javax.media", "jai_core")
Expand Down

0 comments on commit a23e2fa

Please sign in to comment.