Skip to content
Snippets Groups Projects
Commit 6f7f8b40 authored by akwizgran's avatar akwizgran
Browse files

Upgraded Gradle plugin and build tools.

parent 1a83b2c9
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ apply plugin: 'de.undercouch.download'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
buildToolsVersion '25.0.0'
defaultConfig {
minSdkVersion 14
......@@ -24,7 +24,7 @@ android {
}
dependencies {
compile project(':bramble-core')
compile project(path: ':bramble-core', configuration: 'default')
compile fileTree(dir: 'libs', include: '*.jar')
provided 'javax.annotation:jsr250-api:1.0'
}
......
......@@ -10,7 +10,7 @@ targetCompatibility = 1.6
apply plugin: 'witness'
dependencies {
compile project(':bramble-api')
compile project(path: ':bramble-api', configuration: 'default')
compile 'com.madgag.spongycastle:core:1.58.0.0'
compile 'com.h2database:h2:1.4.192' // This is the last version that supports Java 1.6
compile 'org.bitlet:weupnp:0.1.4'
......
......@@ -5,7 +5,7 @@ targetCompatibility = 1.7
apply plugin: 'witness'
dependencies {
compile project(':bramble-core')
compile project(path: ':bramble-core', configuration: 'default')
compile fileTree(dir: 'libs', include: '*.jar')
compile 'net.java.dev.jna:jna:4.4.0'
compile 'net.java.dev.jna:jna-platform:4.4.0'
......
......@@ -3,8 +3,8 @@ apply plugin: 'witness'
dependencies {
def supportVersion = '23.2.1'
compile project(':briar-core')
compile project(':bramble-android')
compile project(path: ':briar-core', configuration: 'default')
compile project(path: ':bramble-android', configuration: 'default')
compile "com.android.support:support-v4:$supportVersion"
compile("com.android.support:appcompat-v7:$supportVersion") {
exclude module: 'support-v4'
......@@ -73,7 +73,7 @@ def getGitHash = { ->
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
buildToolsVersion '25.0.0'
defaultConfig {
minSdkVersion 14
......
......@@ -5,5 +5,5 @@ targetCompatibility = 1.6
apply plugin: 'witness'
dependencies {
compile project(':bramble-api')
compile project(path: ':bramble-api', configuration: 'default')
}
......@@ -10,13 +10,13 @@ targetCompatibility = 1.6
apply plugin: 'witness'
dependencies {
compile project(':briar-api')
compile project(path: ':briar-api', configuration: 'default')
compile 'com.rometools:rome:1.7.3'
compile 'org.jdom:jdom2:2.0.6'
compile 'com.squareup.okhttp3:okhttp:3.8.0'
compile 'org.jsoup:jsoup:1.10.3'
testCompile project(':bramble-core')
testCompile project(path: ':bramble-core', configuration: 'default')
testCompile project(path: ':bramble-core', configuration: 'testOutput')
testCompile project(path: ':bramble-api', configuration: 'testOutput')
testCompile 'net.jodah:concurrentunit:0.4.2'
......
......@@ -14,7 +14,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'de.undercouch:gradle-download-task:3.2.0'
classpath files('libs/gradle-witness.jar')
......
......@@ -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-2.14.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment