Skip to content

Commit

Permalink
Merge pull request #2190 from mapfish/backport/2187-to-3.27
Browse files Browse the repository at this point in the history
[Backport 3.27] [Backport 3.24] Move repository for Dependabot
  • Loading branch information
sbrunner authored Dec 9, 2021
2 parents 761c778 + 761e7c4 commit 4c2dbd1
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 13 deletions.
12 changes: 0 additions & 12 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,6 @@ configurations.all {

apply plugin: 'org.owasp.dependencycheck'

configure(subprojects.findAll { ['core', 'examples', 'docs'].contains(it.name) }) {
repositories {
mavenLocal()
maven { url "http://download.osgeo.org/webdav/geotools" }
mavenCentral()
jcenter()
maven { url "https://dl.bintray.com/readytalk/maven" }
maven { url "https://jaspersoft.jfrog.io/jaspersoft/third-party-ce-artifacts" }
maven { url "https://repo.osgeo.org/repository/release/" }
maven { url "https://download.osgeo.org/webdav/geotools/" }
}
}
configure(subprojects.findAll { ['core', 'examples'].contains(it.name) }) {
apply plugin: 'java'
apply plugin: 'com.github.spotbugs'
Expand Down
1 change: 1 addition & 0 deletions ci/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ checks:
steps: []
rebuild-3-20-3-22.yaml:
steps: []
versions: false
codespell:
ignore_re:
- ^examples/src/test/resources/examples/.*
Expand Down
7 changes: 7 additions & 0 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ apply plugin: 'distribution'

defaultTasks 'build'

repositories {
mavenCentral()
jcenter()
maven { url "https://jaspersoft.jfrog.io/jaspersoft/third-party-ce-artifacts" }
maven { url "https://repo.osgeo.org/repository/release/" }
}

// the task `run` of the gretty plugin conflicts with the task with the same
// name of the plugin `application`. that's why the following tasks are defined
// manually.
Expand Down
7 changes: 7 additions & 0 deletions docs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ apply plugin: 'idea'

defaultTasks 'build'

repositories {
mavenCentral()
jcenter()
maven { url "https://jaspersoft.jfrog.io/jaspersoft/third-party-ce-artifacts" }
maven { url "https://repo.osgeo.org/repository/release/" }
}

dependencies {
compile project(':core')
compile "org.codehaus.groovy:groovy-all:$project.groovyVersion",
Expand Down
5 changes: 4 additions & 1 deletion examples/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import org.gradle.api.tasks.testing.logging.TestLogEvent

repositories {
maven { url 'https://maven.restlet.org' }
mavenCentral()
jcenter()
maven { url 'https://maven.restlet.org' }
maven { url "https://jaspersoft.jfrog.io/jaspersoft/third-party-ce-artifacts" }
maven { url "https://repo.osgeo.org/repository/release/" }
}

dependencies {
Expand Down

0 comments on commit 4c2dbd1

Please sign in to comment.