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 b9c4b10 commit c915349Copy full SHA for c915349
build.gradle
@@ -22,7 +22,7 @@ apply plugin: 'idea'
22
ext {
23
bintrayPublish = false
24
// Sets release version
25
- grailsVersion = '3.2.2.BUILD-SNAPSHOT'
+ grailsVersion = '3.2.2'
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.2.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
+ assertEquals("3.2.2", GrailsUtil.getGrailsVersion());
29
}
30
31
@Override
0 commit comments