Skip to content

Commit a23e2fa

Browse files
committed
Use local mvn repo to get changes for opengis-migration
1 parent 3e1c446 commit a23e2fa

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

Diff for: build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
buildscript {
22
repositories {
3+
mavenLocal()
34
mavenCentral()
45
maven { url "https://plugins.gradle.org/m2/" }
56
}

Diff for: core/build.gradle

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ apply plugin: 'distribution'
77
defaultTasks 'build'
88

99
repositories {
10+
mavenLocal() {
11+
content {
12+
excludeModule("javax.media", "jai_core")
13+
}
14+
}
1015
mavenCentral {
1116
content {
1217
excludeModule("javax.media", "jai_core")

Diff for: docs/build.gradle

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ apply plugin: 'idea'
55
defaultTasks 'build'
66

77
repositories {
8+
mavenLocal() {
9+
content {
10+
excludeModule("javax.media", "jai_core")
11+
}
12+
}
813
mavenCentral {
914
content {
1015
excludeModule("javax.media", "jai_core")

Diff for: examples/build.gradle

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import org.gradle.api.tasks.testing.logging.TestLogEvent
22

33
repositories {
4+
mavenLocal() {
5+
content {
6+
excludeModule("javax.media", "jai_core")
7+
}
8+
}
49
mavenCentral {
510
content {
611
excludeModule("javax.media", "jai_core")

0 commit comments

Comments
 (0)