This repository has been archived by the owner on Apr 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
build.gradle
140 lines (113 loc) · 3.07 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
plugins {
id 'java-library'
id 'maven'
id 'maven-publish'
id 'com.github.johnrengelman.shadow' version '6.1.0'
id 'com.jfrog.bintray' version '1.8.5'
}
def versionObj = new Version(major: 0, minor: 7, revision: 7)
group 'com.github.natanbc'
version "${versionObj}"
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
}
dependencies {
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'com.github.natanbc:native-loader:0.7.0'
compileOnly 'com.sedmelluq:lavaplayer:1.3.66'
testCompile 'com.sedmelluq:lavaplayer:1.3.66'
testCompile 'ch.qos.logback:logback-classic:1.2.3'
}
import org.apache.tools.ant.filters.ReplaceTokens
task sourcesForRelease(type: Copy) {
from 'src/main/java'
into 'build/filteredSrc'
filter(ReplaceTokens, tokens: [
VERSION_MAJOR: versionObj.getMajor(),
VERSION_MINOR: versionObj.getMinor(),
VERSION_REVISION: versionObj.getRevision(),
COMMIT_HASH: getCommitHash()
])
}
compileJava {
source = sourcesForRelease.destinationDir
classpath = sourceSets.main.compileClasspath
options.encoding = 'UTF-8'
dependsOn sourcesForRelease
}
jar {
baseName = project.name
manifest {
attributes 'Implementation-Version': version
}
}
shadowJar {
classifier = "withDependencies"
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from "${buildDir}/filteredSrc"
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
publishing {
publications {
BintrayRelease(MavenPublication) {
from components.java
groupId group
artifactId archivesBaseName
artifact sourcesJar {
classifier 'sources'
}
artifact javadocJar {
classifier 'javadoc'
}
}
}
}
bintray {
version = "${versionObj}"
user = getProjectProperty("BINTRAY_USERNAME")
key = getProjectProperty("BINTRAY_API_KEY")
publications = ["BintrayRelease"]
pkg {
repo = 'maven'
name = project.name
licenses = ['Apache-2.0']
vcsUrl = 'https://github.com/natanbc/lavadsp.git'
publish = true
version {
name = project.version.toString()
released = new Date()
}
}
}
String getProjectProperty(String propertyName) {
String property
if(hasProperty(propertyName)) {
property = project.properties[propertyName]
} else {
property = System.getenv(propertyName) ?: ""
}
return property
}
bintrayUpload {
dependsOn shadowJar
onlyIf { !getProjectProperty("BINTRAY_USERNAME").empty }
onlyIf { !getProjectProperty("BINTRAY_API_KEY").empty }
}
static def getCommitHash() {
def p = Runtime.getRuntime().exec("git rev-parse HEAD")
p.waitFor()
p.getIn().text.trim()
}
class Version {
String major, minor, revision
String toString() {
"${major}.${minor}" + (revision == "0" ? "" : ".${revision}")
}
}