-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
257 lines (206 loc) · 7.45 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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
plugins {
id 'java'
id 'application'
id 'maven-publish'
id 'org.openjfx.javafxplugin' version '0.0.10'
id 'org.beryx.jlink' version '2.24.1'
// id 'pl.allegro.tech.build.axion-release' version '1.14.0'
// Only saving this site... nice!
// https://axion-release-plugin.readthedocs.io/en/latest/examples/examples/
id 'signing'
}
ext {
Properties _props = new Properties()
File _propsFile = new File('./version.properties')
_props.load(_propsFile.newDataInputStream())
// Load act version from properties
project.version =
_props.getProperty("majorVersion") +
"." + _props.getProperty("minorVersion") +
"." + _props.getProperty("buildNumber")
"+" + _props.getProperty("artifactBuildNumber")
// Variables used in flows to update..
propsFile = _propsFile
props = _props
buildV = _props.getProperty("buildNumber")
buildA = _props.getProperty("artifactBuildNumber")
fullVersion = project.version + "+" + buildA
}
group 'io.github.gleidsonmt'
repositories {
mavenCentral()
}
javafx {
version = '17.0.1'
modules = [
'javafx.controls',
'javafx.fxml', 'javafx.web'
]
}
application {
mainClass = 'io.github.gleidsonmt.gndecorator.App'
mainModule = 'io.github.gleidsonmt.gndecorator'
}
dependencies {
implementation files('vendor/scenicView.jar')
implementation 'org.jetbrains:annotations:23.0.0'
}
task replaceVersionInREADME {
// Maven
// ant.replaceregexp(match:'<version>([0-9+\\.]+)</version>',
// replace:"<version>${version}</version>", flags:'g', byline:true, encoding: 'UTF-8') {
// fileset(dir: '.', includes: 'README.md')
// }
// // Gradle
// ant.replaceregexp(match: "${group}\\:${name}\\:([0-9+#\\.]+)",
// replace:"${group}\\:${name}:${version}", flags:'g', byline:true, encoding: 'UTF-8') {
// fileset(dir: '.', includes: 'README.md')
// }
// Release Badge
// ant.replaceregexp(match:'v([0-9+\\.]+)',
// replace:"v${version}", flags:'g', byline:true, encoding: 'UTF-8') {
// fileset(dir: '.', includes: 'README.md')
// }
ant.replaceregexp(match:'Build-([0-9+\\.]+)',
replace:"Build-${fullVersion}", flags:'g', byline:true, encoding: 'UTF-8') {
fileset(dir: '.', includes: 'README.md')
}
}
task buildInServer(dependsOn: build) {
group 'Java CI'
println 'Needs to build in server..'
// updateV = needsUpdate;
if (project.hasProperty("server")) {
println 'Creating a new Build version'
int sum = (buildV as BigDecimal) + 1
props.setProperty('buildNumber', sum.toString())
println "Your new build version is ${props.getProperty("buildNumber")}"
props.store(propsFile.newWriter(), null)
props.load(propsFile.newDataInputStream())
println 'Building in server...'
println "Act version ${project.version}"
}
}
task incrementBuildArtifactVersion() {
group 'build'
println 'incrementing build artifact'
if (!project.hasProperty("server")) {
println "update artifact"
int sum = (buildA as BigDecimal) + 1
props.setProperty('artifactBuildNumber', sum.toString())
println "Your new artifact version is ${props.getProperty("artifactBuildNumber")}"
props.store(propsFile.newWriter(), null)
props.load(propsFile.newDataInputStream())
println "Storing Properties."
} else println 'skipping.. it is a server build..'
}
ext.save = {
props.store(propsFile.newWriter(), null)
props.load(propsFile.newDataInputStream())
println "Storing Properties."
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
//task javadocJar(type: Jar) {
// classifier = 'javadoc'
// from javadoc
//}
artifacts {
// archives sourcesJar, javadocJar
archives sourcesJar
}
signing {
setRequired {
// // signing is only required if the artifacts are to be published
// gradle.taskGraph.allTasks.any { (it == PublishToMavenRepository) }
gradle.taskGraph.allTasks.any { it.equals( PublishToMavenRepository) }
}
sign configurations.archives
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
pom {
name = 'GNDecorator'
description = 'Custom window decorator for javafx apps.'
url = 'https://github.com/gleidsonmt/gndecorator'
licenses {
license {
name = 'GNU General Public License v3.0'
url = 'https://www.gnu.org/licenses/gpl-3.0-standalone.html'
}
}
developers {
developer {
id = 'Gleidson2020'
name = 'Gleidson Neves da Silveira'
email = '[email protected]'
}
}
scm {
url = 'https://github.com/gleidsonmt/gndecorator'
connection = 'scm:https://github.com/gleidsonmt/gndecorator.git'
developerConnection = 'scm:git://github.com/gleidsonmt/gndecorator.git'
}
repositories {
maven {
name = "GNDecorator"
url = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
credentials {
username = project.properties["ossrhUser"]
password = project.properties["ossrhPassword"]
}
}
// maven {
// name = "GitHubPackages"
// url = "https://maven.pkg.github.com/gleidsonmt/gndecorator"
// credentials {
// username = project.properties["github.user"]
// password = project.properties["github.token"]
// }
// }
}
}
}
}
}
jlink {
imageZip = project.file("${buildDir}/distributions/app-${javafx.platform.classifier}.zip")
options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']
launcher {
name = 'GNDecorator'
}
jpackage {
imageOptions = [
'--icon', 'logo_256.ico'
]
installerType = 'exe'
installerOptions = [
'--description', "A decorator stage for javafx apps.",
'--copyright', 'Copyrigth © 2021-2022 GLEIDSON NEVES DA SILVEIRA'
, '--icon', 'logo_256.ico'
]
addExtraDependencies("javafx")
}
}
//uploadArchives {
// repositories {
// mavenDeployer {
// beforeDeployment { deployment -> signing.signPom(deployment) }
//
// repository(url: "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/") {
// authentication(userName: project.properties['ossrhUser'], password: project.properties["ossrhPassword"])
// }
//
// snapshotRepository(url: "https://s01.oss.sonatype.org/content/repositories/snapshots/") {
// authentication(userName: project.properties['ossrhUser'], password: project.properties["ossrhPassword"])
// }
// }
// }
//}
jlinkZip {
group = 'distribution'
}