forked from mariten/kanatools-java
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
137 lines (115 loc) · 3.25 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
buildscript {
repositories {
jcenter()
}
}
plugins {
id "com.jfrog.bintray" version "1.6"
id "com.github.kt3k.coveralls" version "2.5.0"
}
apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'maven'
apply plugin: 'maven-publish'
repositories {
mavenCentral()
}
// Primary configuration
group = 'com.mariten'
version = '1.3.0'
description = 'Utilities for handling Japanese kana text easily in Java'
// JDK version compatibility
sourceCompatibility = 1.6
targetCompatibility = 1.6
dependencies {
testCompile 'org.hamcrest:hamcrest-core:1.3'
testCompile 'junit:junit:4.11'
}
test {
systemProperty 'test_with_php', "$System.env.TEST_WITH_PHP"
}
jacoco {
toolVersion = '0.7.5.201505241946'
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled true
}
}
// Custom tasks for creating source/javadoc JARs
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allJava
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
// Add javadoc/source jar tasks as artifacts
artifacts {
archives sourcesJar, javadocJar
}
def pomConfig = {
licenses {
license {
name "The MIT License"
url "http://www.opensource.org/licenses/mit-license.php"
distribution "repo"
}
}
developers {
developer {
id "mariten"
name "Jeff Case"
email "[email protected]"
}
}
scm {
connection "scm:git:git://github.com/mariten/kanatools-java.git"
developerConnection "scm:git:git://github.com/mariten/kanatools-java.git"
url "https://github.com/mariten/kanatools-java"
}
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
artifact sourcesJar
artifact javadocJar
pom.withXml {
def root = asNode()
root.appendNode('name', 'Kana Tools for Java')
root.appendNode('description', project.getDescription())
root.appendNode('url', 'http://mariten.github.io/kanatools-java')
root.children().last() + pomConfig
}
}
}
}
bintray {
user = 'mariten'
key = System.getenv('BINTRAY_API_KEY')
publications = ['mavenJava']
pkg {
repo = 'maven'
name = project.getName()
desc = project.getDescription()
licenses = ['MIT']
websiteUrl = 'http://mariten.github.io/kanatools-java'
issueTrackerUrl = 'https://github.com/mariten/kanatools-java/issues'
vcsUrl = 'https://github.com/mariten/kanatools-java.git'
githubRepo = 'mariten/kanatools-java'
githubReleaseNotesFile = 'HISTORY.md'
publicDownloadNumbers = true
labels = ['japanese', 'conversion', 'kana', 'hiragana', 'katakana', 'romaji', 'zenkaku', 'hankaku', '日本語', 'かな変換', 'ひらがな', 'カタカナ', '仮名', 'ローマ字', '全角', '半角']
version {
name = project.getVersion()
vcsTag = project.getVersion()
released = new Date()
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.10'
}