Skip to content

Commit f72ba34

Browse files
committed
updates for scaffolding and hibernate plugins
1 parent 23d9068 commit f72ba34

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

gradle/assemble.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ task pluginsFromRepo {
102102
ext.plugins = [
103103
cache: "1.1.1",
104104
'database-migration': "1.3.5",
105-
hibernate: "3.6.10.M6",
105+
hibernate: "3.6.10",
106106
jquery: "1.10.2",
107107
resources: "1.2",
108-
scaffolding: "2.0.0.RC2",
108+
scaffolding: "2.0.0",
109109
tomcat: "7.0.42",
110110
webxml: "1.4.1"
111111
]

grails-resources/src/grails/grails-app/conf/BuildConfig.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ grails.project.dependency.resolution = {
5656
build ":tomcat:7.0.42"
5757

5858
// plugins for the compile step
59-
compile ":scaffolding:2.0.0.RC2"
59+
compile ":scaffolding:2.0.0"
6060
compile ':cache:1.1.1'
6161

6262
// plugins needed at runtime but not for compilation
63-
runtime ":hibernate:3.6.10.M6" // or ":hibernate4:4.1.11.M3"
63+
runtime ":hibernate:3.6.10" // or ":hibernate4:4.1.11"
6464
runtime ":database-migration:1.3.5"
6565
runtime ":jquery:1.10.2"
6666
runtime ":resources:1.2"

grails-resources/src/grails/templates/maven/app.pom

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,15 @@
119119
<dependency>
120120
<groupId>org.grails.plugins</groupId>
121121
<artifactId>scaffolding</artifactId>
122-
<version>2.0.0.RC2</version>
122+
<version>2.0.0</version>
123123
<type>zip</type>
124124
<scope>compile</scope>
125125
</dependency>
126126

127127
<dependency>
128128
<groupId>org.grails.plugins</groupId>
129129
<artifactId>hibernate</artifactId>
130-
<version>3.6.10.M6</version>
130+
<version>3.6.10</version>
131131
<type>zip</type>
132132
<scope>compile</scope>
133133
</dependency>

0 commit comments

Comments
 (0)