Changeset 901 for branches/features
- Timestamp:
- Apr 26, 2011, 8:20:55 PM (14 years ago)
- Location:
- branches/features/purchaseOrders
- Files:
-
- 4 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/features/purchaseOrders
- Property svn:ignore
-
old new 3 3 target 4 4 .directory 5 6 *.iml
-
- Property svn:ignore
-
branches/features/purchaseOrders/application.properties
r879 r901 1 1 #Grails Metadata file 2 #Tue Mar 22 15:05:37EST 20112 #Tue Apr 26 07:59:16 EST 2011 3 3 app.grails.version=1.3.7 4 4 app.name=gnuMims -
branches/features/purchaseOrders/grails-app/conf/BuildConfig.groovy
r876 r901 1 1 grails.project.class.dir = "target/classes" 2 2 grails.project.test.class.dir = "target/test-classes" 3 grails.project.test.reports.dir 3 grails.project.test.reports.dir = "target/test-reports" 4 4 5 5 def env = System.getProperty('grails.env') … … 8 8 case "production": 9 9 //grails.project.war.file = "target/${appName}-${appVersion}.war" 10 grails.project.war.file ="target/${appName}Live.war"10 grails.project.war.file = "target/${appName}Live.war" 11 11 break 12 12 case "development": 13 grails.project.war.file ="target/${appName}Dev.war"13 grails.project.war.file = "target/${appName}Dev.war" 14 14 break 15 15 default: 16 grails.project.war.file ="target/${appName}.war"16 grails.project.war.file = "target/${appName}.war" 17 17 break 18 18 } … … 34 34 35 35 // inherit Grails' default dependencies 36 inherits( "global") {36 inherits("global") { 37 37 // uncomment to disable ehcache 38 38 // excludes 'ehcache' … … 50 50 //mavenLocal() 51 51 mavenCentral() 52 mavenRepo "https://nexus.codehaus.org/content/repositories/snapshots" 52 53 //mavenRepo "http://snapshots.repository.codehaus.org" 53 54 //mavenRepo "http://repository.codehaus.org" … … 61 62 runtime 'mysql:mysql-connector-java:5.1.9' 62 63 63 runtime 64 runtime('org.apache.poi:poi:3.5-FINAL') { 64 65 excludes 'servlet-api', 'commons-logging', 'log4j' 65 66 } 66 67 67 runtime 68 runtime('net.sf.jasperreports:jasperreports:3.7.2') { 68 69 excludes 'xml-apis' 69 70 } 70 71 71 runtime 72 runtime 72 runtime('org.apache.ant:ant:1.7.1') 73 runtime('org.apache.ant:ant-launcher:1.7.1') 73 74 75 test("org.seleniumhq.selenium:selenium-htmlunit-driver:latest.release") { 76 excludes 'xml-apis' 77 } 78 } 79 plugins { 80 test ":geb:0.6-SNAPSHOT" 81 test ":spock:0.5-groovy-1.7" 74 82 } 75 83 -
branches/features/purchaseOrders/grails-app/conf/Config.groovy
r888 r901 11 11 // } 12 12 13 grails.app.context=/gnumims/ 13 14 // Set false due to acegi security issue. 14 15 // See: http://jira.grails.org/browse/GPACEGI-41
Note: See TracChangeset
for help on using the changeset viewer.