-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
62 lines (53 loc) · 1.29 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
plugins {
id 'java'
id 'maven-publish'
id 'com.jfrog.bintray' version '1.7.3'
}
group 'org.msyu.parser'
ext.pkgname = 'sixteen2four'
version '1.0.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile 'org.testng:testng:6.9.+'
}
test {
useTestNG()
}
task sourceJar(type: Jar) {
from sourceSets.main.allSource
}
publishing {
publications {
main(MavenPublication) {
from components.java
artifactId pkgname
artifact sourceJar {
classifier "sources"
}
}
}
}
bintray {
user = bintrayUser
key = bintrayKey
publications = ['main']
dryRun = false
publish = false
pkg {
repo = 'msyu'
name = 'msyu-parser-sixteen2four'
desc = 'A push-style characters-to-codepoints converter for Java'
websiteUrl = 'https://github.com/ypoluektovich/msyu-parser-sixteen2four'
issueTrackerUrl = 'https://github.com/ypoluektovich/msyu-parser-sixteen2four/issues'
vcsUrl = 'https://github.com/ypoluektovich/msyu-parser-sixteen2four.git'
licenses = ['MPL-2.0']
publicDownloadNumbers = true
version {
name = project.version
vcsTag = 'v' + project.version
}
}
}