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.
prevents ant, gant etc. going into the runtime/compile scope (build o…
…nly) and hence ending up in the war file
- Loading branch information
1 parent
303ec46
commit ebb865f
Showing
11 changed files
with
97 additions
and
13 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
dependencies { | ||
compile "org.springframework:spring-tx:${springVersion}" | ||
|
||
compile project(":grails-core"), | ||
project(':grails-bootstrap') | ||
compile project(":grails-core") | ||
} | ||
jar.appendix = 'plugin-services' |
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
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 |
---|---|---|
@@ -1,6 +1,19 @@ | ||
dependencies { | ||
compile "org.springframework:spring-tx:${springVersion}" | ||
compile "org.springframework:spring-web:${springVersion}" | ||
compile project(":grails-bootstrap") | ||
compile project(":grails-bootstrap"), { | ||
exclude group:"org.fusesource.jansi", module:"jansi" | ||
exclude group:"jline", module:"jline" | ||
exclude group:"net.java.dev.jna", module:"jna" | ||
|
||
// Ant | ||
exclude group:"org.apache.ant", module:"ant" | ||
exclude group:"org.apache.ant", module:"ant-launcher" | ||
exclude group:"org.apache.ivy", module:"ivy" | ||
exclude group:"org.apache.ant", module:"ant-trax" | ||
exclude group:"org.apache.ant", module:"ant-junit" | ||
|
||
exclude group:"org.codehaus.gant", module:"gant_groovy1.8" | ||
} | ||
} | ||
jar.appendix = 'spring' |
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