-
Notifications
You must be signed in to change notification settings - Fork 88
/
build.gradle
executable file
·207 lines (186 loc) · 7.57 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
/*
* Copyright (c) 2005-2024 Radiance Kirill Grouchnikov. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* o Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* o Neither the name of the copyright holder nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
buildscript {
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
maven {
url "https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev"
}
maven {
url "https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven"
}
}
dependencies {
classpath libs.kotlin.gradlePlugin
classpath libs.mavenpublish.gradlePlugin
classpath libs.versionchecker.gradlePlugin
classpath libs.dokka.gradlePlugin
}
}
allprojects {
version = findProperty('VERSION_NAME')
repositories {
mavenLocal()
mavenCentral()
maven {
url "https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev"
}
maven {
url "https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven"
}
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
}
defaultTasks 'build', 'jar'
// Configure Java compilation for all the projects
tasks.withType(JavaCompile) {
// enforce Java 9 as the source + target + compile time level
javaCompiler = javaToolchains.compilerFor {
languageVersion = JavaLanguageVersion.of(9)
}
sourceCompatibility = JavaVersion.VERSION_1_9
targetCompatibility = JavaVersion.VERSION_1_9
compileJava.doFirst {
if (javaCompiler.get().getMetadata().getLanguageVersion() != JavaLanguageVersion.of(9))
throw new IllegalStateException("Compiler version mismatch; required is "
+ JavaLanguageVersion.of(9) + ", but using "
+ javaCompiler.get().getMetadata().getLanguageVersion())
}
// flag all usage of deprecated APIs as errors
options.deprecation = true
options.compilerArgs += ['-Werror']
clean {
delete 'out' // interpreted relative to the project directory
}
disableAutoTargetJvm()
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
jvmTarget = "9"
}
}
// Configure the jar task for all the projects
tasks.withType(Jar) {
// create reproducible builds by removing timestamps and doing cross-platform file order
preserveFileTimestamps = false
reproducibleFileOrder = true
archiveBaseName = "${rootProject.name}-${project.name}"
manifest {
// add radiance version, build JDK and build JDK vendor into the manifest file
attributes("Radiance-Version": "${findProperty('VERSION_NAME')} [${findProperty('CODENAME')}]", \
"Build-JDK": System.getProperty('java.version'), \
"Build-JDK-Vendor": System.getProperty('java.vendor'), \
"Automatic-Module-Name": "org.pushingpixels." + "${findProperty('POM_ARTIFACT_ID')}".replace("-", "."))
}
}
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked"
}
}
}
subprojects {
task allDeps(type: DependencyReportTask) {}
}
// To generate report about available dependency updates, run
// ./gradlew dependencyUpdates -Drevision=release
apply plugin: "com.github.ben-manes.versions"
// Copies the compiled jars from all the modules into the drop folder. The compiled
// jars are grouped into three folders: 'core' for app-facing modules (such as Animation,
// Common, Theming, Component), 'demo' for modules that have demos and 'tools' for
// modules with various tools.
task copyJars(type: Copy) {
delete "drop/${project.version}"
subprojects {
project ->
project.afterEvaluate {
copy {
def projectName = project.name
if (projectName.startsWith("demos/") || projectName.startsWith("tools/")) {
projectName = projectName.substring(6)
}
from file("${project.buildDir}/libs/${rootProject.name}-${projectName}-${project.version}.jar")
into file("drop/${project.version}/${project.designation}")
}
}
}
}
// Collects all the dependencies of the core modules in build/libs-core
task getCoreDependencies(type: Copy) {
into 'build/libs-core'
from {
subprojects.findAll { it.designation == "core" && it.name != "kotlin-ext" }.collect { it.configurations.compileClasspath }
}
doLast {
println("Copied all core dependencies to build/libs-core")
}
}
// Collects all the dependencies of the demo modules in build/libs-demo
task getDemoDependencies(type: Copy) {
into 'build/libs-demo'
from {
subprojects.findAll { it.designation == "demo" && it.name != "demos" }.collect { it.configurations.compileClasspath }
}
doLast {
println("Copied all demo dependencies to build/libs-demo")
}
}
// Collects all the dependencies of the demo modules in build/libs-demo
task getToolsDependencies(type: Copy) {
duplicatesStrategy(DuplicatesStrategy.EXCLUDE)
into 'build/libs-tools'
from {
subprojects.findAll { it.designation == "tools" && it.name != "tools" }.collect { it.configurations.compileClasspath }
}
doLast {
println("Copied all tools dependencies to build/libs-tools")
}
}
task getAllDependencies(type: Copy, dependsOn: [getCoreDependencies, getDemoDependencies, getToolsDependencies])
task printRuntimeDependencies {
doLast {
println "Project runtime dependencies:"
allprojects.each { p ->
println()
println " $p.name ".center(45, '-')
p.configurations.findAll { it.name == "runtimeClasspath" }.findAll { !it.allDependencies.empty }.each { c ->
c.allDependencies.each { dep ->
if (dep.group != null) {
println "$dep.group:$dep.name:$dep.version"
}
}
}
}
}
}