diff --git a/build.standalone.sh b/build.standalone.sh index 55f4aab..daa690a 100755 --- a/build.standalone.sh +++ b/build.standalone.sh @@ -1 +1 @@ -grails prod build-standalone ropeytasks.jar +grails prod build-standalone --jetty ropeytasks.jar diff --git a/grails-app/conf/BuildConfig.groovy b/grails-app/conf/BuildConfig.groovy index 1f56c47..eccdd7d 100644 --- a/grails-app/conf/BuildConfig.groovy +++ b/grails-app/conf/BuildConfig.groovy @@ -12,13 +12,13 @@ grails.project.fork = [ // compile: [maxMemory: 256, minMemory: 64, debug: false, maxPerm: 256, daemon:true], // configure settings for the test-app JVM, uses the daemon by default - test: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 512, daemon:true], + test: [maxMemory: 1024, minMemory: 64, debug: false, maxPerm: 512, daemon:true], // configure settings for the run-app JVM - run: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 512, forkReserve:false], + run: [maxMemory: 1024, minMemory: 64, debug: false, maxPerm: 512, forkReserve:false], // configure settings for the run-war JVM - war: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 512, forkReserve:false], + war: [maxMemory: 1024, minMemory: 64, debug: false, maxPerm: 512, forkReserve:false], // configure settings for the Console UI JVM - console: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 512] + console: [maxMemory: 1024, minMemory: 64, debug: false, maxPerm: 512] ] grails.project.dependency.resolver = "maven" // or ivy @@ -54,12 +54,11 @@ grails.project.dependency.resolution = { } plugins { - compile "org.grails.plugins:standalone:9.0.0.M4" + runtime "org.grails.plugins:standalone:9.0.0.M4" // plugins for the build system only compile ":scaffolding:2.1.2" compile ':cache:1.1.8' compile ":asset-pipeline:1.9.9" - compile "org.grails.plugins:tomcat:9.0.0.M4.1" // plugins needed at runtime but not for compilation runtime ":hibernate4:4.3.6.1" // or ":hibernate:3.6.10.18" diff --git a/grails-app/conf/RecaptchaConfig.groovy b/grails-app/conf/RecaptchaConfig.groovy deleted file mode 100644 index 9bbf95b..0000000 --- a/grails-app/conf/RecaptchaConfig.groovy +++ /dev/null @@ -1,35 +0,0 @@ -recaptcha { - // These keys are generated by the ReCaptcha service - publicKey = "6LeRp9ASAAAAANe2Scl5NHKDrJxhVz1cNR6xRcT2" - privateKey = "6LeRp9ASAAAAAKvLvhAYgfHasL91VURhDip0CI3y" - - // Include the noscript tags in the generated captcha - includeNoScript = true -} - -mailhide { - // Generated by the Mailhide service - publicKey = "" - privateKey = "" -} - -environments { - development { - recaptcha { - // Set to false to disable the display of captcha - enabled = false - - // Communicate using HTTPS - useSecureAPI = false - } - } - production { - recaptcha { - // Set to false to disable the display of captcha - enabled = false - - // Communicate using HTTPS - useSecureAPI = false - } - } -} \ No newline at end of file diff --git a/ropeytasks.jar b/ropeytasks.jar index 1f03c17..438d82d 100644 Binary files a/ropeytasks.jar and b/ropeytasks.jar differ