forked from smithy-lang/smithy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
200 lines (173 loc) · 5.85 KB
/
build.gradle.kts
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
/*
* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
plugins {
`java-library`
`maven-publish`
checkstyle
jacoco
id("com.github.spotbugs") version "1.6.10"
}
// Set a global group ID and version on each project. This version might
// need to be overridden is a project ever needs to be version bumped out
// of band with the rest of the projects.
allprojects {
group = "software.amazon.smithy"
version = "0.7.0"
}
// The root project doesn't produce a JAR.
tasks["jar"].enabled = false
subprojects {
val subproject = this
/*
* Java
* ====================================================
*
* By default, build each subproject as a java library.
* We can add if-statements around this plugin to change
* how specific subprojects are built (for example, if
* we build Sphinx subprojects with Gradle).
*/
apply(plugin = "java-library")
if (plugins.hasPlugin("java")) {
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.withType(JavaCompile::class) {
options.encoding = "UTF-8"
}
// Use Junit5's test runner.
tasks.withType<Test> {
useJUnitPlatform()
}
// Apply junit 5 and hamcrest test dependencies to all java projects.
dependencies {
testCompile("org.junit.jupiter:junit-jupiter-api:5.4.0")
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.4.0")
testCompile("org.junit.jupiter:junit-jupiter-params:5.4.0")
testCompile("org.hamcrest:hamcrest:2.1")
}
// Reusable license copySpec
val licenseSpec = copySpec {
from("${project.rootDir}/LICENSE")
from("${project.rootDir}/NOTICE")
}
// Set up tasks that build source and javadoc jars.
tasks.register<Jar>("sourcesJar") {
metaInf.with(licenseSpec)
from(sourceSets.main.get().allJava)
archiveClassifier.set("sources")
}
tasks.register<Jar>("javadocJar") {
metaInf.with(licenseSpec)
from(tasks.javadoc)
archiveClassifier.set("javadoc")
}
// Configure jars to include license related info
tasks.jar {
metaInf.with(licenseSpec)
inputs.property("moduleName", subproject.extra["moduleName"])
manifest {
attributes["Automatic-Module-Name"] = subproject.extra["moduleName"]
}
}
// Always run javadoc after build.
tasks["build"].finalizedBy(tasks["javadoc"])
}
/*
* Maven
* ====================================================
*
* Publish to Maven central.
*/
if (plugins.hasPlugin("java")) {
apply(plugin = "maven-publish")
repositories {
mavenLocal()
maven {
url = uri("http://repo.maven.apache.org/maven2")
}
}
publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
// Ship the source and javadoc jars.
artifact(tasks["sourcesJar"])
artifact(tasks["javadocJar"])
}
}
}
}
/*
* CheckStyle
* ====================================================
*
* Apply CheckStyle to source files but not tests.
*/
if (plugins.hasPlugin("java")) {
apply(plugin = "checkstyle")
tasks["checkstyleTest"].enabled = false
}
/*
* Code coverage
* ====================================================
*
* Create code coverage reports after running tests.
*/
if (plugins.hasPlugin("java")) {
apply(plugin = "jacoco")
// Always run the jacoco test report after testing.
tasks["test"].finalizedBy(tasks["jacocoTestReport"])
// Configure jacoco to generate an HTML report.
tasks.jacocoTestReport {
reports {
xml.isEnabled = false
csv.isEnabled = false
html.destination = file("$buildDir/reports/jacoco")
}
}
}
/*
* Spotbugs
* ====================================================
*
* Run spotbugs against source files and configure suppressions.
*/
if (plugins.hasPlugin("java")) {
apply(plugin = "com.github.spotbugs")
// We don't need to lint tests.
tasks["spotbugsTest"].enabled = false
// Configure the bug filter for spotbugs.
tasks.withType(com.github.spotbugs.SpotBugsTask::class) {
effort = "max"
excludeFilterConfig = project.resources.text.fromFile("${project.rootDir}/config/spotbugs/filter.xml")
}
}
}
/*
* Javadoc
* ====================================================
*
* Configure javadoc to collect sources and construct
* its classpath from the main sourceset of each
* subproject.
*/
tasks.javadoc {
title = "Smithy API $version"
setDestinationDir(file("$buildDir/docs/javadoc/latest"))
source(project.subprojects.map { project(it.name).sourceSets.main.get().allJava })
classpath = files(project.subprojects.map { project(it.name).sourceSets.main.get().compileClasspath })
}