mirror of
https://github.com/eclipse/paho.mqtt.android.git
synced 2025-05-08 18:39:31 +08:00
49 lines
1.3 KiB
Groovy
Executable File
49 lines
1.3 KiB
Groovy
Executable File
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
dependencies {
|
|
//classpath 'com.android.tools.build:gradle:2.0.0'
|
|
classpath 'com.android.tools.build:gradle:2.0.0'
|
|
//classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.+'
|
|
// Work around to fix build
|
|
//classpath 'com.github.JakeWharton:sdk-manager-plugin:1d29782dd6'
|
|
classpath 'com.github.sschuberth:sdk-manager-plugin:master-SNAPSHOT'
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
ext{
|
|
|
|
compileSdkVersion = 23
|
|
buildToolsVersion = '23.0.2'
|
|
|
|
group = 'org.eclipse.paho'
|
|
|
|
sampleArchivesBaseName = 'org.eclipse.paho.android.sample'
|
|
sampleVersion = '1.1.0'
|
|
|
|
serviceArchivesBaseName = 'org.eclipse.paho.android.service'
|
|
serviceVersion = '1.1.0'
|
|
|
|
clientVersion = '1.1.0'
|
|
|
|
mavenUrl = "https://repo.eclipse.org/content/repositories/paho-snapshots/"
|
|
|
|
supportLibVersion = '23.3.0'
|
|
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
version = rootProject.ext.serviceVersion
|
|
group = rootProject.ext.group
|
|
}
|