-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
85 lines (74 loc) · 1.66 KB
/
Copy pathbuild.gradle
File metadata and controls
85 lines (74 loc) · 1.66 KB
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
plugins {
id 'idea'
id 'java'
id 'maven-publish'
id 'com.diffplug.spotless' version '8.1.0'
}
group = 'com.azuredoom.hytale'
version = '0.2.0'
javadoc {
options.addStringOption('Xdoclint:-missing', '-quiet')
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(25)
}
withSourcesJar()
withJavadocJar()
}
repositories {
mavenCentral()
maven {
name = "hytale-release"
url = uri("https://maven.hytale.com/release")
}
maven {
name = "hytale-pre-release"
url = uri("https://maven.hytale.com/pre-release")
}
}
dependencies {
compileOnly("com.hypixel.hytale:Server:2026.03.26-89796e57b")
compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
}
spotless {
java {
eclipse().configFile("$rootDir/eclipse-formatter.xml")
endWithNewline()
importOrder("", "java", group.toString(), "\\#")
leadingTabsToSpaces(4)
removeUnusedImports()
trimTrailingWhitespace()
}
}
tasks.build {
dependsOn("spotlessApply")
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
options.release = 25
}
idea {
module {
downloadSources = true
downloadJavadoc = true
}
}
publishing {
repositories {
maven {
name = "azuremaven"
url = "https://maven.azuredoom.com/mods"
credentials(PasswordCredentials)
authentication {
basic(BasicAuthentication)
}
}
}
publications {
maven(MavenPublication) {
artifactId = "hytale-asset-editor-runtime"
from components.java
}
}
}