forked from agrosner/DBFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kotlin-artifacts.gradle
40 lines (36 loc) · 934 Bytes
/
kotlin-artifacts.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
apply plugin: 'com.github.dcendents.android-maven'
install {
repositories.mavenInstaller {
pom {
project {
packaging bt_packaging
name bt_name
url bt_siteUrl
licenses {
license {
name bt_licenseName
url bt_licenseUrl
}
}
scm {
connection bt_gitUrl
developerConnection bt_gitUrl
url bt_siteUrl
}
}
}
}
}
// restore when found.
/*task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}*/
/*task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}*/
artifacts {
//archives sourcesJar
//archives javadocJar
}