forked from briacp/omegat-plugin-fake-mt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
86 lines (72 loc) · 1.61 KB
/
build.gradle
File metadata and controls
86 lines (72 loc) · 1.61 KB
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
plugins {
id 'java'
id 'checkstyle'
id 'distribution'
id 'maven'
id 'idea'
id 'eclipse'
}
repositories {
mavenCentral()
}
def compileDependencies = [
'org.omegat:omegat:5.7.1',
'commons-io:commons-io:2.7',
'commons-lang:commons-lang:2.6'
]
def testDependencies = [
'junit:junit:4.13.2',
'org.xmlunit:xmlunit-legacy:2.8.2',
'org.madlonkay:supertmxmerge:2.0.3'
]
dependencies {
compileDependencies.each {
compileOnly it
//testImplementation it
}
testDependencies.each {
//testImplementation it
}
}
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:deprecation" << "-Xlint:unchecked"
}
jar {
manifest {
// plugin's main class name is defined in gradle.properties file.
attributes(
"OmegaT-Plugins": pluginMainClass,
"Plugin-Version": version,
"Plugin-Name": pluginName,
"Main-Class": pluginMainClass
)
}
}
/* Checkstyle */
checkstyle {
config = resources.text.fromFile("config/checkstyle/checkstyle.xml")
ignoreFailures = true
toolVersion = '9.3'
sourceSets = [project.sourceSets.main]
}
tasks.checkstyleMain.setGroup('Verification')
tasks.remove(tasks['checkstyleTest'])
artifacts {
archives jar
}
distTar {
compression = Compression.GZIP
}
distributions {
main {
contents {
from('README.md', 'COPYING')
into('docs') {
from 'CHANGELOG.md'
}
from(jar) {
into 'plugin'
}
}
}
}