-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
80 lines (67 loc) · 2.43 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
plugins {
id 'net.neoforged.moddev' version '1.0.11' apply false
}
subprojects {
apply plugin: 'java'
sourceSets.main.resources { srcDir 'src/generated/resources' }
java.toolchain.languageVersion = JavaLanguageVersion.of(21)
java.withSourcesJar()
java.withJavadocJar()
jar {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
manifest {
attributes([
"Specification-Title" : project.name,
"Specification-Vendor" : project.group,
"Specification-Version" : "1", // We are version 1 of ourselves
"Implementation-Title" : project.name,
"Implementation-Version" : "${version}",
"Implementation-Vendor" : project.group,
"Implementation-URL" : "https://journeymap.info",
"Implementation-Timestamp": getDate()
])
}
}
repositories {
mavenLocal()
mavenCentral()
maven {
name = 'Sponge / Mixin'
url = 'https://repo.spongepowered.org/repository/maven-public/'
}
maven {
name = "JourneyMap (Public)"
url = "https://jm.gserv.me/repository/maven-public/"
}
maven {
url "https://www.cursemaven.com"
}
maven {
name = 'BlameJared Maven (CrT / Bookshelf)'
url = 'https://maven.blamejared.com'
}
}
dependencies {
// for annotations
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.1'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.1'
testImplementation 'org.mockito:mockito-core:5.9.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.9.0'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.10.1'
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = 'UTF-8'
it.options.getRelease().set(21)
}
// Disables Gradle's custom module metadata from being published to maven. The
// metadata includes mapped dependencies which are not reasonably consumable by
// other mod developers.
tasks.withType(GenerateModuleMetadata).configureEach {
enabled = false
}
}
def getDate() {
def date = new Date()
def formattedDate = date.format(project.dateFormat)
return formattedDate
}