Skip to content

Commit

Permalink
Split GSP into separate project https://github.com/grails/grails-gsp
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Apr 11, 2017
1 parent 06e4546 commit 5fcfb96
Show file tree
Hide file tree
Showing 207 changed files with 43 additions and 34,069 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ext {
isBuildSnapshot = grailsVersion.endsWith(".BUILD-SNAPSHOT")
isTravisBuild = System.getenv().get("TRAVIS") == 'true'
asyncVersion = '3.3.0.M1'
gspVersion = '3.3.0.BUILD-SNAPSHOT'
antTraxVersion = "1.7.1"
antVersion = "1.9.7"
aspectjVersion = "1.8.7" // use same version as org.springframework:spring-aspects uses
Expand Down
6 changes: 6 additions & 0 deletions grails-bom/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,12 @@ publishing {
mkp.version( asyncVersion )
}

mkp.dependency {
mkp.groupId 'org.grails.plugins'
mkp.artifactId "gsp"
mkp.version( gspVersion )
}


for(profile in profiles) {
mkp.dependency {
Expand Down
14 changes: 13 additions & 1 deletion grails-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ publishing {
}
}
}
for(sub in ['rest', 'databinding', 'i18n', 'gsp', 'services', 'url-mappings', 'interceptors']) {
for(sub in ['rest', 'databinding', 'i18n', 'services', 'url-mappings', 'interceptors']) {
delegate.dependency {
delegate.groupId "org.grails"
delegate.artifactId "grails-plugin-${sub}"
Expand All @@ -133,6 +133,18 @@ publishing {
}
}
}
delegate.dependency {
delegate.groupId "org.grails.plugins"
delegate.artifactId "gsp"
delegate.version gspVersion
delegate.scope "compile"
delegate.exclusions {
delegate.exclusion {
delegate.groupId 'javax'
delegate.artifactId 'javaee-web-api'
}
}
}
delegate.dependency {
delegate.groupId "com.h2database"
delegate.artifactId "h2"
Expand Down
18 changes: 0 additions & 18 deletions grails-gsp/README.md

This file was deleted.

7 changes: 0 additions & 7 deletions grails-gsp/build.gradle

This file was deleted.

This file was deleted.

Loading

0 comments on commit 5fcfb96

Please sign in to comment.