Created
November 15, 2009 22:35
-
-
Save bradleybeddoes/235544 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mavenCentral() | |
add(new org.apache.ivy.plugins.resolver.URLResolver()) { | |
name = 'Spring Source bundles release' | |
descriptor = 'optional' | |
checkmodified = true | |
addIvyPattern 'http://repository.springsource.com/ivy/bundles/release/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]' | |
addArtifactPattern 'http://repository.springsource.com/ivy/bundles/release/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]' | |
} | |
add(new org.apache.ivy.plugins.resolver.URLResolver()) { | |
name = 'Spring Source external' | |
descriptor = 'optional' | |
checkmodified = true | |
addIvyPattern 'http://repository.springsource.com/ivy/bundles/external/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]' | |
addArtifactPattern 'http://repository.springsource.com/ivy/bundles/external/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]' | |
} | |
add(new org.apache.ivy.plugins.resolver.URLResolver()) { | |
name = 'Spring Source library bundles release' | |
descriptor = 'optional' | |
checkmodified = true | |
addIvyPattern 'http://repository.springsource.com/ivy/libraries/release/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]' | |
addArtifactPattern 'http://repository.springsource.com/ivy/libraries/release/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]' | |
} | |
add(new org.apache.ivy.plugins.resolver.URLResolver()) { | |
name = 'Spring Source externals library bundles release' | |
descriptor = 'optional' | |
checkmodified = true | |
addIvyPattern 'http://repository.springsource.com/ivy/libraries/external/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]' | |
addArtifactPattern 'http://repository.springsource.com/ivy/libraries/external/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]' | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment