Skip to content

Commit 06e0d46

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

File tree

5 files changed

+17
-0
lines changed

5 files changed

+17
-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")

Diff for: publish/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ if (enablePublishing.toBoolean() || System.getenv("JITPACK") == "true") {
4444

4545
if (System.getenv("JITPACK") != "true") {
4646
repositories {
47+
mavenLocal()
4748
maven {
4849
name = "GitHubPackages"
4950
url = uri("https://maven.pkg.github.com/mapfish/mapfish-print")

0 commit comments

Comments
 (0)