forked from yoyicue/omegat-tencent-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
199 lines (174 loc) · 4.86 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'findbugs'
apply plugin: 'checkstyle'
apply plugin: 'distribution'
apply plugin: 'maven'
apply plugin: 'groovy'
apply plugin: 'idea'
apply plugin: 'org.asciidoctor.gradle.asciidoctor'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.3'
classpath 'org.asciidoctor:asciidoctorj-diagram:1.3.1'
classpath 'org.asciidoctor:asciidoctorj-pdf:1.5.0-alpha.11'
}
}
version = '0.3'
configurations {
provided
integrationTestCompile.extendsFrom testCompile
integrationTestRuntime.extendsFrom testRuntime
}
sourceSets {
main {
compileClasspath += configurations.provided
test.compileClasspath += configurations.provided
test.runtimeClasspath += configurations.provided
}
integrationTest {
compileClasspath += main.output + test.output + configurations.provided
runtimeClasspath += main.output + test.output + configurations.provided
java {
srcDir file('src/integration-test/java')
}
resources.srcDir file('src/integration-test/resources')
}
}
repositories {
maven {
url "https://dl.bintray.com/omegat-org/maven"
}
jcenter()
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.21'
provided 'org.omegat:omegat:4.1.0'
provided 'commons-io:commons-io:2.4'
provided 'commons-lang:commons-lang:2.6'
provided 'org.slf4j:slf4j-nop:1.7.21'
testCompile 'junit:junit:4.12'
testCompile 'xmlunit:xmlunit:1.6'
testCompile 'org.madlonkay.supertmxmerge:supertmxmerge:2.0.1'
integrationTestCompile 'org.testng:testng:6.9.10'
integrationTestCompile 'com.alibaba:fastjson:1.2.17'
// https://mvnrepository.com/artifact/com.tencentcloudapi/tencentcloud-sdk-java
compile group: 'com.tencentcloudapi', name: 'tencentcloud-sdk-java', version: '3.0.56'
}
//test.useTestNG()
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:deprecation" << "-Xlint:unchecked"
}
// Build FatJar
//
// It is easy to install a 3rd-party OmegaT plugin which is
// a single jar file, because all user should do is just to put the jar
// file into plugins directory.
jar {
from files(sourceSets.main.output.classesDir)
from {configurations.compile.collect {zipTree(it)}} {
exclude "META-INF/MANIFEST.MF"
}
manifest {
// plugin's main class name is defined in gradle.properties file.
attributes("OmegaT-Plugins": pluginMainClass)
}
}
checkstyle {
config = resources.text.fromFile("${rootProject.projectDir}/config/checkstyle/checkstyle.xml")
ignoreFailures = true
toolVersion = '7.1'
}
tasks.checkstyleMain.setGroup('Verification')
// Force prevent checkstyle/findbugs on Test.
task checkstyleTest(overwrite: true) << {}
task checkstyleIntegrationTest(overwrite: true) << {}
task findbugsTest(overwrite: true) << {}
task findbugsIntegrationTest(overwrite: true) << {}
// Treat findbugs failure as warning
findbugs {
ignoreFailures = true
}
tasks.withType(FindBugs) {
reports {
xml.enabled = false
html.enabled = true
}
setGroup('Verification')
}
task integrationTest(type: Test) {
description = "Integration/Acceptance Test"
testClassesDir = sourceSets.integrationTest.output.classesDir
classpath = sourceSets.integrationTest.runtimeClasspath
useTestNG()
}
check.dependsOn integrationTest
integrationTest.mustRunAfter test
tasks.integrationTest.setGroup('Verification')
// Hack for IntelliJ IDEA
idea {
module {
testSourceDirs += file('src/integration-test/java')
}
}
task sourceJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
javadoc {
classpath += configurations.provided
options.locale = 'en_US'
}
groovydoc {
classpath += configurations.provided
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
asciidoctorj {
version = '1.5.4.1'
}
asciidoctor {
backends = ['html5', 'pdf']
attributes (
'build-gradle': file('build.gradle'),
'endpoint-url': 'http://omegat.org',
'source-highlighter': 'coderay',
'imagesdir' : "$rootDir/docs/images",
'toc': 'left',
'icons': 'font',
'setanchors': '',
'idprefix': '',
'idseparator': '-',
'docinfo1': ''
)
}
tasks.asciidoctor.setGroup('Documentation')
artifacts {
archives jar
archives sourceJar
//archives javadocJar
}
distTar {
compression = Compression.GZIP
}
distributions {
main {
contents {
from('README.md', 'COPYING')
into('docs') {
from 'CHANGELOG.md'
}
from(sourceJar) {
into 'source'
}
from(jar) {
into 'plugin'
}
}
}
}