We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eda5459 commit 3f431c8Copy full SHA for 3f431c8
build.gradle
@@ -22,7 +22,7 @@ apply plugin: 'idea'
22
ext {
23
bintrayPublish = false
24
// Sets release version
25
- grailsVersion = '3.2.3.BUILD-SNAPSHOT'
+ grailsVersion = '3.2.3'
26
isBuildSnapshot = grailsVersion.endsWith(".BUILD-SNAPSHOT")
27
isTravisBuild = System.getenv().get("TRAVIS") == 'true'
28
grails-core/src/test/groovy/grails/util/GrailsUtilTests.java
@@ -25,7 +25,7 @@
public class GrailsUtilTests extends TestCase {
public void testGrailsVersion() {
- assertEquals("3.2.3.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
+ assertEquals("3.2.3", GrailsUtil.getGrailsVersion());
29
}
30
31
@Override
0 commit comments