소스 검색

fix issue #1188 (TestNiftyExamples crash)

Stephen Gold 6 년 전
부모
커밋
dcb66977ba
1개의 변경된 파일3개의 추가작업 그리고 7개의 파일을 삭제
  1. 3 7
      jme3-testdata/build.gradle

+ 3 - 7
jme3-testdata/build.gradle

@@ -2,13 +2,9 @@ if (!hasProperty('mainClass')) {
     ext.mainClass = ''
 }
 
-repositories {
-    maven {
-        url 'http://nifty-gui.sourceforge.net/nifty-maven-repo'
-    }
-}
+def niftyVersion = '1.4.3'
 
 dependencies {
-    compile 'lessvoid:nifty-examples:1.4.1'
-    runtime 'com.github.nifty-gui:nifty-style-black:1.4.3'
+    runtime "com.github.nifty-gui:nifty-examples:$niftyVersion"
+    runtime "com.github.nifty-gui:nifty-style-black:$niftyVersion"
 }