forked from jarod/qqwry-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
103 lines (87 loc) · 2.33 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
buildscript {
repositories {
jcenter()
}
ext {
junitJupiterVersion = '5.3.2'
}
}
apply plugin: 'java-library'
apply plugin: 'eclipse'
apply plugin: 'jacoco'
apply plugin: 'maven'
apply plugin: 'signing'
sourceCompatibility = 1.8
group = 'com.github.jarod'
archivesBaseName = 'qqwry-java'
version = '0.7.2'
jacoco {
toolVersion = "0.8.2"
}
repositories {
jcenter()
}
dependencies {
testImplementation(
"org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}",
)
testRuntime(
"org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}",
)
}
test {
useJUnitPlatform {
excludeTags 'slow'
}
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.java
}
artifacts {
archives javadocJar, sourcesJar
}
signing {
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: repoReleaseUrl) {
authentication(userName: repoUsername, password: repoPassword)
}
snapshotRepository(url: repoSnapshotUrl) {
authentication(userName: repoUsername, password: repoPassword)
}
pom.project {
name 'qqwry-java'
packaging 'jar'
description 'A java library to read QQWry IP database.'
url 'https://github.com/jarod/qqwry-java'
scm {
connection 'scm:git:https://github.com/jarod/qqwry-java.git'
developerConnection 'scm:git:[email protected]:jarod/qqwry-java.git'
url 'https://github.com/jarod/qqwry-java'
}
licenses {
license {
name 'The MIT License'
url 'https://github.com/jarod/qqwry-java/blob/master/LICENSE'
}
}
developers {
developer {
id 'jarod_liu'
name 'Jarod Liu'
email '[email protected]'
}
}
}
}
}
}