-
Notifications
You must be signed in to change notification settings - Fork 152
/
jpos-app.gradle
149 lines (134 loc) · 4.09 KB
/
jpos-app.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
String archiveJarName="${project.name}-${project.version}.jar"
String archiveWarName="${project.name}-${project.version}.war"
String installDir=file("${project.buildDir}/install/${project.name}")
project.ext {
def target = project.hasProperty('target') ? target : 'devel'
targetConfiguration = configure(new Properties()) {
put('jvm.options', '') // empty default, so ReplaceTokens has something to work with
put('target', target)
jarname = archiveJarName
warname = archiveWarName
buildTimestamp = new Date().format("yyyy-MM-dd HH:mm:ss z")
rootProjectDir = this.rootProject.projectDir.toString()
}
File cfgFile = file("${rootProject.projectDir}/${target}.properties")
if (cfgFile.exists()) {
cfgFile.withInputStream{
targetConfiguration.load(it)
}
}
}
// We build a CopySpec for consistency
def jposCopySpec = copySpec {
from(file("src/dist")) {
exclude 'cfg/*.lmk'
exclude 'cfg/*.jks'
exclude 'cfg/*.ks'
exclude '**/*.jpg'
exclude '**/*.gif'
exclude '**/*.png'
exclude '**/*.pdf'
exclude '**/*.ico'
exclude '**/*.war'
exclude '**/*.dat'
exclude '**/*.ser'
exclude '**/*.eot'
exclude '**/*.svg'
exclude '**/*.ttf'
exclude '**/*.woff'
exclude '**/*.woff2'
filter(
org.apache.tools.ant.filters.ReplaceTokens,
tokens: targetConfiguration
)
}
from(file("src/dist")) {
include 'cfg/*.lmk'
include 'cfg/*.jks'
include 'cfg/*.ks'
include '**/*.jpg'
include '**/*.gif'
include '**/*.png'
include '**/*.pdf'
include '**/*.ico'
include '**/*.war'
include '**/*.dat'
include '**/*.ser'
include '**/*.eot'
include '**/*.svg'
include '**/*.ttf'
include '**/*.woff'
include '**/*.woff2'
}
from(jar) {
rename archiveJarName, "${targetConfiguration.jarname}"
}
into("lib") {
from(configurations.runtimeClasspath) {
exclude "servlet-api*.jar" // dependency hack
}
}
into("webapps") {
from(file("build/libs")) {
include '*.war'
}
}
}
// Create the jar's manifest
jar.manifest {
attributes(
'Implementation-Title': project.name,
'Implementation-Version': project.version,
'Main-Class': 'org.jpos.q2.Q2',
'Class-Path': configurations.runtimeClasspath.files.collect { "lib/" + it.getName() }.join(' ')
)
}
processResources {
from(sourceSets.main.resources.srcDirs) {
include '**/*.properties'
include '**/*.xml'
include '**/*.cfg'
include '**/*.asc'
filter(
org.apache.tools.ant.filters.ReplaceTokens,
tokens: targetConfiguration
)
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}
}
//--------------------------------------------------
// TASKS
//--------------------------------------------------
task version (type: JavaExec, dependsOn: classes) {
description = "Shows jPOS Version"
main = 'org.jpos.q2.Q2'
args = ['--version']
classpath configurations.runtimeClasspath
}
task dist(type: Tar) {
description 'Creates tar distribution'
into "$project.name-$archiveVersion"
with jposCopySpec
compression = Compression.GZIP
archiveExtension = "tar.gz"
}
task installApp(type: Sync) {
description 'Installs jPOS based application'
into { installDir }
with jposCopySpec
}
task wrapper( type: Wrapper ) {
description = "Generate gradlew[.bat]"
gradleVersion = '6.0.1'
}
task installResources(dependsOn: 'classes', type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = 'org.jpos.q2.install.Install'
args = ["--outputDir=src/dist"]
}
task viewTests (description: 'Open Test Reports') {
doLast {
Class.forName("java.awt.Desktop").newInstance().browse(
new File("${buildDir}/reports/tests/test", 'index.html').toURI())
}
}