-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
48 lines (40 loc) · 924 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
def home = "$System.env.HOME"
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
}
}
apply plugin: 'com.android.library'
apply plugin: 'maven'
version = "1.0.13"
group = "com.sonelli"
repositories {
mavenCentral()
}
dependencies {
compile 'com.android.support:support-v4:21.0.0'
// compile project(':jsch')
}
android {
compileSdkVersion 19
buildToolsVersion "19.1.0"
defaultConfig {
minSdkVersion 7
targetSdkVersion 19
}
}
uploadArchives {
repositories {
mavenDeployer {
// Deploy to a local repository
repository(url: "file:///" + home + "/Dropbox/Sonelli/Maven")
pom.groupId = 'com.sonelli'
pom.artifactId = 'juicessh-pluginlibrary'
pom.version = '1.0.13'
pom.packaging = 'aar'
}
}
}