Skip to content

Commit

Permalink
Replaced Tomcat with Jetty
Browse files Browse the repository at this point in the history
  • Loading branch information
continuumsecurity committed Jun 18, 2017
1 parent 5c62030 commit db8d032
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 42 deletions.
2 changes: 1 addition & 1 deletion build.standalone.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
grails prod build-standalone ropeytasks.jar
grails prod build-standalone --jetty ropeytasks.jar
11 changes: 5 additions & 6 deletions grails-app/conf/BuildConfig.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down
35 changes: 0 additions & 35 deletions grails-app/conf/RecaptchaConfig.groovy

This file was deleted.

Binary file modified ropeytasks.jar
Binary file not shown.

0 comments on commit db8d032

Please sign in to comment.