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 1eefa56 commit cdb1567Copy full SHA for cdb1567
build.gradle
@@ -21,7 +21,8 @@ apply plugin: 'idea'
21
ext {
22
bintrayPublish = false
23
// Sets release version
24
- grailsVersion = '3.0.2.BUILD-SNAPSHOT'
+// grailsVersion = '3.0.2.BUILD-SNAPSHOT'
25
+ grailsVersion = '3.0.2'
26
isBuildSnapshot = grailsVersion.endsWith(".BUILD-SNAPSHOT")
27
isTravisBuild = System.getenv().get("TRAVIS") == 'true'
28
grails-core/src/test/groovy/grails/util/GrailsUtilTests.java
@@ -35,7 +35,7 @@
35
public class GrailsUtilTests extends TestCase {
36
37
public void testGrailsVersion() {
38
- assertEquals("3.0.2.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
+ assertEquals("3.0.2", GrailsUtil.getGrailsVersion());
39
}
40
41
@Override
0 commit comments