Update gradle to 3.4

Signed-off-by: Yahor Berdnikau <egorr.berd@gmail.com>
This commit is contained in:
Yahor Berdnikau 2017-02-21 17:46:24 +01:00
parent eeacc79493
commit 292490be7d
4 changed files with 21 additions and 1 deletions

View File

@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4-all.zip

2
subsonic-api/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/build
*.iml

14
subsonic-api/build.gradle Normal file
View File

@ -0,0 +1,14 @@
apply plugin: 'java'
apply plugin: 'kotlin'
dependencies {
compile other.okhttp
testCompile testing.junit
testCompile testing.kotlinJunit
testCompile testing.mockitoKotlin
testCompile testing.kluent
}
sourceCompatibility = "1.7"
targetCompatibility = "1.7"

View File

@ -0,0 +1,4 @@
package org.moire.ultrasonic.api.subsonic;
public class MyClass {
}