Skip to content

Commit 099c399

Browse files
set version number to 1.3.3
1 parent a5bf8e1 commit 099c399

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

bin/startGrails

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ fi
114114
if [ -z "$GROOVY_CONF" ]; then
115115
GROOVY_CONF="$GRAILS_HOME/conf/groovy-starter.conf"
116116
fi
117-
STARTER_CLASSPATH="$GRAILS_HOME/lib/groovy-all-1.7.3.jar:$GRAILS_HOME/dist/grails-bootstrap-1.3.3.BUILD-SNAPSHOT.jar"
117+
STARTER_CLASSPATH="$GRAILS_HOME/lib/groovy-all-1.7.3.jar:$GRAILS_HOME/dist/grails-bootstrap-1.3.3.jar"
118118

119119
# Allow access to Cocoa classes on OS X
120120
if $darwin; then

bin/startGrails.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ set CMD_LINE_ARGS=%$
106106

107107
:execute
108108
@rem Setup the command line
109-
set STARTER_CLASSPATH=%GRAILS_HOME%\lib\groovy-all-1.7.3.jar;%GRAILS_HOME%\dist\grails-bootstrap-1.3.3.BUILD-SNAPSHOT.jar
109+
set STARTER_CLASSPATH=%GRAILS_HOME%\lib\groovy-all-1.7.3.jar;%GRAILS_HOME%\dist\grails-bootstrap-1.3.3.jar
110110

111111
if exist "%USERPROFILE%/.groovy/init.bat" call "%USERPROFILE%/.groovy/init.bat"
112112

@@ -127,7 +127,7 @@ set TOOLS_JAR=%JAVA_HOME%\lib\tools.jar
127127
if "%JAVA_OPTS%" == "" set JAVA_OPTS=-Xmx512m -XX:MaxPermSize=96m
128128
set JAVA_OPTS=%JAVA_OPTS% -Dprogram.name="%PROGNAME%"
129129
set JAVA_OPTS=%JAVA_OPTS% -Dgrails.home="%GRAILS_HOME%"
130-
set JAVA_OPTS=%JAVA_OPTS% -Dgrails.version="1.3.3.BUILD-SNAPSHOT"
130+
set JAVA_OPTS=%JAVA_OPTS% -Dgrails.version="1.3.3"
131131
set JAVA_OPTS=%JAVA_OPTS% -Dbase.dir="."
132132
set JAVA_OPTS=%JAVA_OPTS% -Dtools.jar="%TOOLS_JAR%"
133133
set JAVA_OPTS=%JAVA_OPTS% -Dgroovy.starter.conf="%STARTER_CONF%"

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99

1010
apply id: 'groovy'
1111

12-
version = '1.3.3.BUILD-SNAPSHOT'
12+
version = '1.3.3'
1313

1414
sourceCompatibility = "1.5"
1515
targetCompatibility = "1.5"

build.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
grails.version=1.3.3.BUILD-SNAPSHOT
2-
bundlor.grails.version=1.3.3.BUILD-SNAPSHOT
1+
grails.version=1.3.3
2+
bundlor.grails.version=1.3.3
33
grails.src.commons=src/commons
44
grails.src.groovy=src/groovy
55

samples/petclinic-mvc/ivy.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
<conf name="runtime" extends="compile"/>
99
</configurations>
1010
<dependencies>
11-
<dependency org="org.grails" name="grails-bootstrap" rev="1.3.3.BUILD-SNAPSHOT" conf="runtime">
11+
<dependency org="org.grails" name="grails-bootstrap" rev="1.3.3" conf="runtime">
1212
<exclude org="org.springframework" module="spring-instrument-classloading" name="*" type="*" ext="*" conf="" matcher="exact"/>
1313
<exclude org="javax.validation" module="com.springsource.javax.validation" name="*" type="*" ext="*" conf="" matcher="exact"/>
1414

1515
</dependency>
16-
<dependency org="org.grails" name="grails-gorm" rev="1.3.3.BUILD-SNAPSHOT" conf="runtime">
16+
<dependency org="org.grails" name="grails-gorm" rev="1.3.3" conf="runtime">
1717
<exclude org="org.springframework" module="spring-instrument-classloading" name="*" type="*" ext="*" conf="" matcher="exact"/>
1818
<exclude org="javax.validation" module="com.springsource.javax.validation" name="*" type="*" ext="*" conf="" matcher="exact"/>
1919
</dependency>
20-
<dependency org="org.grails" name="grails-web" rev="1.3.3.BUILD-SNAPSHOT" conf="runtime">
20+
<dependency org="org.grails" name="grails-web" rev="1.3.3" conf="runtime">
2121
<exclude org="org.springframework" module="spring-instrument-classloading" name="*" type="*" ext="*" conf="" matcher="exact"/>
2222
<exclude org="javax.validation" module="com.springsource.javax.validation" name="*" type="*" ext="*" conf="" matcher="exact"/>
2323

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#Grails Metadata file
22
#Thu Oct 01 11:54:33 CEST 2009
3-
app.grails.version=1.3.3.BUILD-SNAPSHOT
3+
app.grails.version=1.3.3
44
app.name=petclinic
55
app.servlet.version=2.4
66
app.version=0.1
7-
plugins.hibernate=1.3.3.BUILD-SNAPSHOT
8-
plugins.tomcat=1.3.3.BUILD-SNAPSHOT
7+
plugins.hibernate=1.3.3
8+
plugins.tomcat=1.3.3

src/test/grails/util/GrailsUtilTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
public class GrailsUtilTests extends TestCase {
3636

3737
public void testGrailsVersion() {
38-
assertEquals("1.3.3.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
38+
assertEquals("1.3.3", GrailsUtil.getGrailsVersion());
3939
}
4040

4141
@Override

0 commit comments

Comments
 (0)