-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
91 lines (76 loc) · 1.82 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
plugins {
id 'java'
id 'distribution'
id 'maven'
id 'idea'
id 'eclipse'
}
repositories {
maven {
url "https://dl.bintray.com/omegat-org/maven"
}
jcenter()
}
def compileDependencies = [
'org.omegat:omegat:4.1.3-02',
'commons-io:commons-io:2.4',
'commons-lang:commons-lang:2.6'
]
def testDependencies = [
'junit:junit:4.12',
'xmlunit:xmlunit:1.6',
'org.madlonkay.supertmxmerge:supertmxmerge:2.0.1'
]
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,
"Plugin-Author": pluginAuthor,
"Plugin-Description": pluginDescription,
"Main-Class": pluginMainClass,
// Used to access the name/version inside the plugin
"Implementation-Title": pluginName,
"Implementation-Version": version
)
}
}
artifacts {
archives jar
}
distTar {
compression = Compression.GZIP
}
distributions {
main {
contents {
from('README.md', 'COPYING')
into('docs') {
from 'CHANGELOG.md'
}
from(jar) {
into 'plugin'
}
}
}
}
task installPlugin(type: Copy) {
from 'build/install/plugin-omt-package/plugin'
into omegatPluginDir
include('*.jar')
}
installPlugin.dependsOn installDist