diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index c35372a..2d47252 100644 --- a/build.gradle +++ b/build.gradle @@ -4,6 +4,9 @@ apply plugin: "signing" defaultTasks "build" +sourceCompatibility = 1.7 +targetCompatibility = 1.7 + ext { baseVersion = "0.1" isSnapshot = true @@ -19,8 +22,8 @@ ext { apply from: "gradle/sonatype.gradle" repositories { - mavenCentral() mavenLocal() + mavenCentral() maven { url = sonatypeUrl } |