Skip to content

Commit 12e3734

Browse files
committed
Updates repositories references to current
1 parent 9793f4f commit 12e3734

File tree

2 files changed

+10
-21
lines changed

2 files changed

+10
-21
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
target/*
2+
*.iml
3+
.idea/*

grails-app/conf/BuildConfig.groovy

+7-21
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ grails.project.source.level = 1.6
1111
// run: [maxMemory:1024, minMemory:64, debug:false, maxPerm:256]
1212
//]
1313

14+
grails.project.dependency.resolver = "maven"
15+
1416
grails.project.dependency.resolution = {
1517
// inherit Grails' default dependencies
1618
inherits("global") {
@@ -22,20 +24,12 @@ grails.project.dependency.resolution = {
2224
legacyResolve false // whether to do a secondary resolve on plugin installation, not advised and here for backwards compatibility
2325

2426
repositories {
25-
inherits true // Whether to inherit repository definitions from plugins
26-
27-
grailsPlugins()
28-
grailsHome()
29-
grailsCentral()
30-
3127
mavenLocal()
32-
mavenCentral()
33-
//mavenRepo "http://snapshots.repository.codehaus.org"
34-
//mavenRepo "http://repository.codehaus.org"
35-
//mavenRepo "http://download.java.net/maven/2/"
36-
//mavenRepo "http://repository.jboss.com/maven2/"
37-
mavenRepo "http://maven.ala.org.au/repository"
28+
mavenRepo ("http://nexus.ala.org.au/content/groups/public/") {
29+
updatePolicy 'always'
30+
}
3831
}
32+
3933
dependencies {
4034
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.
4135

@@ -45,18 +39,10 @@ grails.project.dependency.resolution = {
4539
runtime 'org.apache.httpcomponents:httpclient:4.2.2'
4640
runtime 'org.apache.httpcomponents:httpcore:4.2.2'
4741
runtime 'org.apache.httpcomponents:httpclient:4.2.2'
48-
49-
// runtime 'com.jayway.jsonpath:json-path:0.9.1'
50-
// runtime 'com.jayway.jsonpath:json-path-parent:0.9.1'
51-
// runtime 'com.jayway.jsonpath:json-path-assert:0.9.1'
52-
// runtime 'net.minidev:json-smart:1.2'
53-
5442
runtime 'com.jayway.jsonpath:json-path:0.5.6'
55-
runtime 'com.jayway.jsonpath:json-path-parent:0.5.6'
5643
runtime 'com.jayway.jsonpath:json-path-assert:0.5.6'
57-
// runtime 'net.minidev:json-smart:1.2'
58-
// runtime 'com.jayway.jsonpath:json-path:0.5.6'
5944
}
45+
6046
plugins {
6147
build ":release:3.0.1"
6248
runtime ":ala-web-theme:0.5"

0 commit comments

Comments
 (0)