-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
95 lines (75 loc) · 2.08 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
import com.diffplug.spotless.LineEnding
plugins {
id "java"
id "java-gradle-plugin"
id "groovy"
id "maven-publish"
id "com.diffplug.spotless" version "6.25.0"
id "com.gradleup.shadow" version "8.3.3"
}
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
maven { url 'https://jitpack.io' }
}
java {
withSourcesJar()
// Sets the Java version
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
dependencies {
// Gradle API
shadow(gradleApi())
// ASM
shadow("org.ow2.asm:asm:${asm_version}")
shadow("org.ow2.asm:asm-util:${asm_version}") { transitive = false }
shadow("org.ow2.asm:asm-tree:${asm_version}") { transitive = false }
shadow("org.ow2.asm:asm-analysis:${asm_version}") { transitive = false }
shadow("org.ow2.asm:asm-commons:${asm_version}") { transitive = false }
// Access Manipulators
implementation("com.github.PuzzleLoader:access_manipulators:${access_manipulators_version}")
shadow("com.github.johnrengelman:shadow:8.1.1")
implementation("org.apache.maven:maven-artifact:3.6.3")
}
gradlePlugin {
plugins {
puzzleGradle {
id = "cr_puzzle_gradle"
implementationClass = "com.github.puzzle.CosmicPuzzlePlugin"
}
}
}
spotless {
lineEndings = LineEnding.UNIX
java {
trimTrailingWhitespace()
indentWithSpaces()
endWithNewline()
}
}
jar {
dependsOn spotlessApply // Apply spotless so stuff is consistent
from "license.txt"
manifest {
attributes(
"Specification-Title": id,
"Specification-Vendor": project.group,
"Specification-Version": project.version,
)
}
}
publishing {
publications {
maven(MavenPublication) {
groupId = group
artifactId = id
artifact source: shadowJar, classifier: '', extension: 'jar'
}
}
}
wrapper {
gradleVersion = "8.5"
distributionType = Wrapper.DistributionType.ALL
}