now using libgdx-utils 0.9.1-SNAPSHOT
1 files changed, 3 insertions(+), 1 deletions(-)

M build.gradle
M build.gradle +3 -1
@@ 7,7 7,7 @@ ext {
 	libName = 'libgdx-box2d-multiplayer'
 	nameAppendix = project == rootProject ? '' : (project.parent != rootProject ? project.parent.nameAppendix + '-' : '') + project.name
 	nameFull = libName + (nameAppendix.empty ? '' : "-$nameAppendix")
-	libgdxUtilsVersion = '0.9.0'
+	libgdxUtilsVersion = '0.9.1-SNAPSHOT'
 }
 
 group = 'net.dermetfan.libgdx-box2d-multiplayer'

          
@@ 46,6 46,8 @@ sourceSets {
 	site.resources.srcDirs = [javadoc.destinationDir.parentFile, testReportDir.parentFile]
 }
 
+configurations.all { resolutionStrategy.cacheChangingModulesFor 0, 'seconds' }
+
 jar {
 	baseName = libName
 	appendix = nameAppendix