forked from grails/grails-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First phase of integrating bundlor into Grails build
- Loading branch information
1 parent
856e87c
commit 51d7889
Showing
6 changed files
with
118 additions
and
17 deletions.
There are no files selected for viewing
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
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
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
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<ivy-settings> | ||
<conf defaultResolver="grails"/> | ||
<include url="${ivy.default.conf.dir}/ivyconf-public.xml"/> | ||
<include url="${ivy.default.conf.dir}/ivyconf-shared.xml"/> | ||
<include url="${ivy.default.conf.dir}/ivyconf-local.xml"/> | ||
<include url="${ivy.default.conf.dir}/ivyconf-main-chain.xml"/> | ||
<include url="${ivy.default.conf.dir}/ivyconf-default-chain.xml"/> | ||
|
||
<resolvers> | ||
<ibiblio pattern="[organisation]/[type]s/[artifact]-[revision].[ext]" | ||
name="ibiblio-retry" /> | ||
<chain name="grails" dual="true"> | ||
<resolver ref="shared"/> | ||
<resolver ref="public"/> | ||
<resolver ref="ibiblio-retry"/> | ||
</chain> | ||
<chain name="spring-portfolio-lookup" returnFirst="true"> | ||
<s3repo name="bundle-release-repository" bucket="repository.springsource.com" artifact.type="bundles" release.type="release"/> | ||
<s3repo name="bundle-milestone-repository" bucket="repository.springsource.com" artifact.type="bundles" release.type="milestone"/> | ||
<s3repo name="bundle-snapshot-repository" bucket="repository.springsource.com" artifact.type="bundles" release.type="snapshot"/> | ||
<s3repo name="library-release-repository" bucket="repository.springsource.com" artifact.type="libraries" release.type="release"/> | ||
<s3repo name="library-milestone-repository" bucket="repository.springsource.com" artifact.type="libraries" release.type="milestone"/> | ||
<s3repo name="library-snapshot-repository" bucket="repository.springsource.com" artifact.type="libraries" release.type="snapshot"/> | ||
</chain> | ||
</resolvers> | ||
</ivy-settings> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Manifest-Version: 1.0 | ||
Bundle-ManifestVersion: 2 | ||
Bundle-Name: Grails | ||
Bundle-Vendor: SpringSource Inc. | ||
Bundle-SymbolicName: org.grails.bootstrap | ||
Bundle-Version: @grails.version@ | ||
Import-Package: | ||
org.apache.ant;version="[1.7.1, inf)", | ||
Export-Package: | ||
grails.util;version="@grails.version@", | ||
grails.ant;version="@grails.version@", | ||
org.codehaus.groovy.grails.cli;version="@grails.version@", | ||
org.codehaus.groovy.grails.cli.support;version="@grails.version@", | ||
org.codehaus.groovy.grails.resolve;version="@grails.version@" |