Browse Source

updated dependencies (#3675)

Mikhail Bobrutskov 7 years ago
parent
commit
5668834ea5
1 changed files with 2 additions and 6 deletions
  1. 2 6
      frameworks/Java/wizzardo-http/build.gradle

+ 2 - 6
frameworks/Java/wizzardo-http/build.gradle

@@ -9,16 +9,12 @@ sourceCompatibility = 1.8
 mainClassName = "com.wizzardo.techempower.App"
 
 repositories {
-    maven {
-        url "https://oss.sonatype.org/content/repositories/snapshots/"
-    }
-
     jcenter()
     mavenCentral()
 }
 
 dependencies {
-    compile 'com.wizzardo:http:0.2-SNAPSHOT'
+    compile 'com.wizzardo:http:0.2'
     compile 'org.postgresql:postgresql:9.4.1212'
     compile 'com.zaxxer:HikariCP:2.7.3'
 }
@@ -33,4 +29,4 @@ task fatJar(type: Jar) {
     baseName = project.name + '-all'
     from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
     with jar
-}
+}