Skip to content

Commit d4fcd63

Browse files
committed
Back to snapshot
1 parent 1bc01ad commit d4fcd63

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ apply plugin: 'idea'
2121
ext {
2222
bintrayPublish = false
2323
// Sets release version
24-
grailsVersion = '3.0.12'
24+
grailsVersion = '3.0.13.BUILD-SNAPSHOT'
2525
isBuildSnapshot = grailsVersion.endsWith(".BUILD-SNAPSHOT")
2626
isTravisBuild = System.getenv().get("TRAVIS") == 'true'
2727

@@ -68,6 +68,10 @@ version = grailsVersion
6868
group = "org.grails"
6969
apply plugin: 'io.codearte.nexus-staging'
7070

71+
nexusStaging {
72+
delayBetweenRetriesInMillis = 5000
73+
}
74+
7175
// directories created during the build which are related
7276
// to turning the workspace root into a GRAILS_HOME
7377
ext {

grails-core/src/test/groovy/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("3.0.12", GrailsUtil.getGrailsVersion());
38+
assertEquals("3.0.13.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
3939
}
4040

4141
@Override

0 commit comments

Comments
 (0)