generated from GoodforGod/java-jmh-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
63 lines (50 loc) · 1.42 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
plugins {
id "java"
id "application"
id "com.diffplug.spotless" version "6.1.0"
id "com.github.johnrengelman.shadow" version "7.1.0"
}
group = groupId
version = artifactVersion
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
shadowJar {
enabled(false)
}
subprojects {
apply plugin: "java"
apply plugin: "application"
apply plugin: "com.diffplug.spotless"
apply plugin: "com.github.johnrengelman.shadow"
repositories {
mavenLocal()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots" }
}
group = groupId
version = artifactVersion
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
dependencies {
annotationProcessor "org.openjdk.jmh:jmh-generator-annprocess:1.34"
implementation "org.openjdk.jmh:jmh-core:1.34"
}
spotless {
java {
encoding("UTF-8")
importOrder()
removeUnusedImports()
eclipse("4.21.0").configFile("${rootDir}/config/codestyle.xml")
}
}
jar.enabled(true)
artifacts {
archives shadowJar
}
tasks.withType(JavaCompile) {
options.encoding("UTF-8")
options.incremental(true)
options.fork = true
}
}