forked from kaklakariada/portmapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
170 lines (145 loc) · 4.61 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
plugins {
id 'java'
id 'signing'
id 'maven-publish'
id 'jacoco'
id "com.github.hierynomus.license" version "0.15.0"
id "org.sonarqube" version "3.1.1"
id 'com.github.johnrengelman.shadow' version '6.1.0'
id 'io.codearte.nexus-staging' version '0.22.0'
}
repositories {
mavenCentral()
maven {
url 'http://4thline.org/m2'
allowInsecureProtocol true
}
flatDir { dirs 'lib' }
}
version = '2.2.2'
group 'com.github.kaklakariada'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
withJavadocJar()
withSourcesJar()
}
javadoc {
options.addBooleanOption('html5', true)
}
tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:all'
options.encoding = 'UTF-8'
}
test {
if (logger.infoEnabled) {
testLogging.showStandardStreams = true
}
jvmArgs '-XX:+HeapDumpOnOutOfMemoryError', '-enableassertions'
}
processResources {
rename(/(\w+)_en.properties/, '$1.properties')
rename(/(\w+)_zh_CN.properties/, '$1_zh.properties')
filter { line -> line.replaceAll(/@VERSION_NUMBER@/, project.version) }
}
shadowJar {
archiveBaseName = 'portmapper'
archiveVersion = null
}
def mainClass = 'org.chris.portmapper.PortMapperStarter'
jar {
manifest {
attributes 'Main-Class': mainClass
}
}
tasks["build"].dependsOn(shadowJar)
task run(type: JavaExec, dependsOn: shadowJar) {
classpath = shadowJar.outputs.files
main = mainClass
workingDir = rootProject.projectDir
}
artifacts {
archives shadowJar
}
dependencies {
implementation 'args4j:args4j:2.33'
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'org.slf4j:jul-to-slf4j:1.7.30'
implementation 'ch.qos.logback:logback-classic:1.2.3'
implementation 'com.miglayout:miglayout-swing:5.2'
implementation 'org.jdesktop.bsaf:bsaf:1.9.2'
implementation ':sbbi-upnplib:1.0.4'
implementation 'org.fourthline.cling:cling-support:2.1.2'
implementation 'org.bitlet:weupnp:0.1.4'
runtimeOnly 'commons-jxpath:commons-jxpath:1.1' // sbbi
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:3.8.0'
}
license {
header = file('gradle/license-header.txt')
}
jacocoTestReport {
dependsOn test
reports {
xml.enabled true
}
}
tasks["sonarqube"].dependsOn(tasks["jacocoTestReport"])
def getOptionalProperty(String name) {
if(project.hasProperty(name)) {
return project.property(name)
}
logger.info("Project property '${name}' not available. Please it to ~/.gradle/gradle.properties")
return null
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
pom {
name = 'UPnP Portmapper'
description = 'A tool for managing port forwardings via UPnP'
url = 'https://github.com/kaklakariada/portmapper'
licenses {
license {
name = 'GNU General Public License, Version 3.0'
url = 'https://www.gnu.org/licenses/gpl-3.0.txt'
}
}
developers {
developer {
id = 'kaklakariada'
name = 'Christoph'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:https://github.com/kaklakariada/portmapper.git'
developerConnection = 'scm:git:https://github.com/kaklakariada/portmapper.git'
url = 'https://github.com/kaklakariada/portmapper'
}
}
}
}
repositories {
maven {
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
allowInsecureProtocol = false
credentials(PasswordCredentials) {
username = getOptionalProperty("ossrhUsername")
password = getOptionalProperty("ossrhPassword")
}
}
}
}
signing {
sign publishing.publications.mavenJava
}
nexusStaging {
packageGroup = project.group
username = getOptionalProperty("ossrhUsername")
password = getOptionalProperty("ossrhPassword")
}