forked from freerouting/freerouting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
149 lines (118 loc) · 4.3 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
buildscript {
repositories {
mavenCentral()
google()
}
dependencies {
//
}
}
plugins {
id 'java'
id 'maven-publish'
id 'net.nemerosa.versioning' version '3.0.0'
id 'com.github.ben-manes.versions' version '0.46.0'
}
ext.mainClassName = 'app.freerouting.gui.MainApplication'
wrapper {
gradleVersion = '7.3'
}
sourceCompatibility = '17'
targetCompatibility = '17'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
// javadoc is way too strict for my taste.
if (JavaVersion.current().isJava8Compatible()) {
allprojects {
tasks.withType(Javadoc) {
options.addStringOption("encoding", "UTF-8")
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}
repositories {
mavenCentral()
google()
}
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
// https://mvnrepository.com/artifact/javax.help/javahelp
implementation group: 'javax.help', name: 'javahelp', version: '2.0.05'
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.20.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.20.0'
}
Date buildTimeAndDate = new Date()
ext {
buildDate = new java.text.SimpleDateFormat('yyyy-MM-dd').format(buildTimeAndDate)
buildTime = new java.text.SimpleDateFormat('HH:mm:ss.SSSZ').format(buildTimeAndDate)
}
jar {
manifest {
attributes(
'Automatic-Module-Name': 'app.freerouting',
'Built-By': System.properties['user.name'],
'Created-By': System.properties['java.version'] + " (" + System.properties['java.vendor'] + " " + System.properties['java.vm.version'] + ")",
'Build-Date': project.buildDate,
'Build-Time': project.buildTime,
'Build-Revision': versioning.info.commit,
'Specification-Title': project.name,
'Specification-Version': project.version,
'Implementation-Title': project.name,
'Implementation-Version': project.version
)
}
}
task executableJar(type: Jar) {
classifier = 'executable'
duplicatesStrategy(DuplicatesStrategy.EXCLUDE)
from configurations.runtimeClasspath.collect { zipTree(it) }
from files(sourceSets.main.output)
manifest {
attributes(
'Automatic-Module-Name': 'app.freerouting',
'Built-By': System.properties['user.name'],
'Created-By': System.properties['java.version'] + " (" + System.properties['java.vendor'] + " " + System.properties['java.vm.version'] + ")",
'Build-Date': project.buildDate,
'Build-Time': project.buildTime,
'Build-Revision': versioning.info.commit,
'Specification-Title': project.name,
'Specification-Version': project.version,
'Implementation-Title': project.name,
'Implementation-Version': project.version,
'Main-Class': mainClassName
)
}
}
apply from: 'gradle/publishing.gradle'
// write constants to code
task writeVersionInfo() {
doLast {
def buildInfoCode = new File("${project.buildDir}/generated-src/app/freerouting/constants/Constants.java")
buildInfoCode.getParentFile().mkdirs()
buildInfoCode.write("package app.freerouting.constants;\n"
+ "public class Constants {\n"
+ " public static final String FREEROUTING_VERSION = \"${publishing.versionId}\";\n"
+ " public static final String FREEROUTING_BUILD_DATE = \"${buildDate}\";\n"
+ "}\n"
)
}
}
// add the 'vmfconstants' src dir to the folders to compile (input to groovyc)
sourceSets.main.java.srcDirs+=file("${project.buildDir}/generated-src/app/freerouting/constants/")
compileJava.dependsOn+="writeVersionInfo"
task dist(type: Copy) {
from('build/libs/freerouting-executable.jar')
into('build/dist/')
}
dist.dependsOn+="assemble"
task run(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
mainClass = mainClassName
// arguments to pass to the application
// args 'appArg1'
// jvmArgs 'arg1'
}