Browse Source

update to Grails 2.3.2

Lari Hotari 11 years ago
parent
commit
cda7713d9d

+ 1 - 1
config/benchmark_profile

@@ -1,6 +1,6 @@
 export JAVA_HOME=/usr/lib/jvm/java-1.7.0-openjdk-amd64
 export RESIN_HOME=~/FrameworkBenchmarks/installs/resin-4.0.36
-export GRAILS_HOME=~/FrameworkBenchmarks/installs/grails-2.3.1
+export GRAILS_HOME=~/FrameworkBenchmarks/installs/grails-2.3.2
 export VERTX_HOME=~/FrameworkBenchmarks/installs/vert.x-2.0.2-final
 export GOROOT=~/FrameworkBenchmarks/installs/go
 export GOPATH=~/FrameworkBenchmarks/go:~/FrameworkBenchmarks/webgo:~/FrameworkBenchmarks/revel

+ 2 - 2
grails/README.md

@@ -4,7 +4,7 @@ This is the Grails portion of a [benchmarking test suite](../) comparing a varie
 
 ## Infrastructure Software Versions
 The tests were run with:
-* [Grails 2.3.1](http://grails.org/)
+* [Grails 2.3.2](http://grails.org/)
 * [Java OpenJDK 1.7.0_09](http://openjdk.java.net/)
 * [Resin 4.0.34](http://www.caucho.com/)
 * [MySQL 5.5.29](https://dev.mysql.com/)
@@ -17,4 +17,4 @@ http://localhost:8080/grails/hello/json
 
 ### Data-Store/Database Mapping Test
 
-http://localhost:8080/grails/hello/db?queries=5
+http://localhost:8080/grails/hello/queries?queries=5

+ 1 - 1
grails/hello/application.properties

@@ -1,6 +1,6 @@
 #Grails Metadata file
 #Sun Oct 20 22:08:59 EEST 2013
-app.grails.version=2.3.2.BUILD-SNAPSHOT
+app.grails.version=2.3.2
 app.name=hello
 app.servlet.version=2.5
 app.version=0.1

+ 3 - 3
grails/hello/grails-app/conf/BuildConfig.groovy

@@ -63,9 +63,9 @@ grails.project.dependency.resolution = {
     }
 
     plugins {
-        runtime ":hibernate:3.6.10.3-SNAPSHOT"
-        runtime ":jquery:1.10.2"
-        runtime ":resources:1.2.1"
+        runtime ":hibernate:3.6.10.3"
+        //runtime ":jquery:1.10.2"
+        //runtime ":resources:1.2.1"
 
         // Uncomment these (or add new ones) to enable additional resources capabilities
         //runtime ":zipped-resources:1.0"

+ 3 - 3
toolset/setup/linux/installer.py

@@ -248,9 +248,9 @@ class Installer:
     #
     # Grails
     #
-    self.__download("http://dist.springframework.org.s3.amazonaws.com/release/GRAILS/grails-2.3.1.zip")
-    self.__run_command("unzip -o grails-2.3.1.zip")
-    self.__run_command("rm grails-2.3.1.zip")
+    self.__download("http://dist.springframework.org.s3.amazonaws.com/release/GRAILS/grails-2.3.2.zip")
+    self.__run_command("unzip -o grails-2.3.2.zip")
+    self.__run_command("rm grails-2.3.2.zip")
 
     #
     # Play 2