-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.gradle
63 lines (54 loc) · 1.57 KB
/
deploy.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// deploy:
// ./gradlew clean
// ./gradlew assemble
// ./gradlew publishToGithub
apply plugin: "maven-publish"
apply plugin: "com.jfrog.bintray"
ext.pluginGroupdId = "com.halcyonmobile.publish.custom"
ext.pluginArtifactId = "java-and-aar"
ext.pluginVersion = "2.0.1"
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task publishToGitHub(dependsOn: "publishMavenJavaPublicationToGitHubPackagesRepository") {
group = "Publishing"
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
groupId "$pluginGroupdId"
version "$pluginVersion"
artifactId "$pluginArtifactId"
artifact sourcesJar
}
}
repositories {
maven {
name = "GitHubPackages"
url = uri("https://github.com/halcyonmobile/halcyon-custom-gradle-publish-plugin")
credentials {
username = System.getenv("GITHUB_USERNAME")
password = System.getenv("GITHUB_TOKEN")
}
}
}
}
bintray {
user = System.getenv("bintray_username")
key = System.getenv("bintray_password")
publications = ['mavenJava']
publish = true
override = true
pkg {
repo = 'maven'
name = "$pluginGroupdId:$pluginArtifactId"
userOrg = "halcyonmobiledevteam"
vcsUrl = 'https://github.com/halcyonmobile/halcyon-custom-gradle-publish-plugin'
licenses = ['Apache-2.0']
version {
name = pluginVersion
}
}
}