Skip to content

Commit

Permalink
added testapp config file
Browse files Browse the repository at this point in the history
  • Loading branch information
burtbeckwith committed Oct 16, 2013
1 parent c3715c2 commit 80611d8
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ cobertura.ser
/docs
grails-spring-security-core-*.zip
grails-spring-security-core-*.zip.sha1
testapps.config.groovy
plugin.xml
.settings
web-app
36 changes: 36 additions & 0 deletions testapps.config.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
String version = '2.0-RC2'
String grailsHomeRoot = '/usr/local/javalib'
String dotGrailsCommon = '/home/burt/.grails'
String projectDirCommon = '/home/burt/workspace/testapps/spring-security-test'

v20 {
grailsVersion = '2.0.4'
pluginVersion = version
dotGrails = dotGrailsCommon
projectDir = projectDirCommon
grailsHome = grailsHomeRoot + '/grails-' + grailsVersion
}

v21 {
grailsVersion = '2.1.4' // 2.1.5 has a plugin i18n bug
pluginVersion = version
dotGrails = dotGrailsCommon
projectDir = projectDirCommon
grailsHome = grailsHomeRoot + '/grails-' + grailsVersion
}

v22 {
grailsVersion = '2.2.4'
pluginVersion = version
dotGrails = dotGrailsCommon
projectDir = projectDirCommon
grailsHome = grailsHomeRoot + '/grails-' + grailsVersion
}

v23 {
grailsVersion = '2.3.0'
pluginVersion = version
dotGrails = dotGrailsCommon
projectDir = projectDirCommon
grailsHome = grailsHomeRoot + '/grails-' + grailsVersion
}

0 comments on commit 80611d8

Please sign in to comment.