forked from jpos/jPOS-EE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jpos-app.gradle
129 lines (118 loc) · 3.57 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
def archiveJarName="${project.name}-${project.version}.jar"
def archiveWarName="${project.name}-${project.version}.war"
project.ext {
targetConfiguration = new Properties()
def target = project.hasProperty('target') ? target : 'devel'
targetConfiguration.put('jarname', archiveJarName.toString())
targetConfiguration.put('warname', archiveWarName.toString())
targetConfiguration.put('target', target.toString())
targetConfiguration.put("buildTimestamp", new Date().format("yyyy-MM-dd HH:mm:ss z"));
File cfgFile = file("../../${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/*.jks'
exclude '**/*.jpg'
exclude '**/*.gif'
exclude '**/*.png'
exclude '**/*.pdf'
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/*.jks'
include '**/*.jpg'
include '**/*.gif'
include '**/*.png'
include '**/*.pdf'
include '**/*.ser'
include '**/*.eot'
include '**/*.svg'
include '**/*.ttf'
include '**/*.woff'
include '**/*.woff2'
}
from(jar) {
rename archiveJarName, "${targetConfiguration.jarname}"
}
into("lib") {
from(configurations.runtime) {
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.runtime.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
)
}
}
//--------------------------------------------------
// TASKS
//--------------------------------------------------
task version (type: JavaExec, dependsOn: classes) {
description = "Shows jPOS Version"
main = 'org.jpos.q2.Q2'
args = ['--version']
classpath configurations.runtime
}
task dist(type: Tar) {
description 'Creates tar distribution'
into "$project.name-$version"
with jposCopySpec
compression = Compression.GZIP
extension "tar.gz"
}
task installApp(type: Sync) {
description 'Installs jPOS based application'
into { file("${project.buildDir}/install/${project.name}") }
with jposCopySpec
}
task wrapper( type: Wrapper ) {
description = "Generate gradlew[.bat]"
gradleVersion = '1.5'
}
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())
}
}