Skip to content

Commit b3d64de

Browse files
committed
2 parents 9a0117a + 9ee1ee0 commit b3d64de

17 files changed

+1155
-336
lines changed

build.gradle.kts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@
1717
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
1818

1919
plugins {
20-
kotlin("jvm") version("1.9.0")
21-
`kotlin-dsl`
22-
`maven-publish`
2320
groovy
21+
kotlin("jvm") version("2.0.0")
22+
`kotlin-dsl`
23+
val dgtVersion = "2.5.0"
24+
id("dev.deftu.gradle.tools") version(dgtVersion)
25+
id("dev.deftu.gradle.tools.publishing.maven") version(dgtVersion)
2426
}
2527

2628
val ENV = { key: String -> System.getenv(key) }
@@ -51,8 +53,8 @@ repositories {
5153
dependencies {
5254
implementation(gradleApi())
5355
implementation(localGroovy())
54-
implementation("io.github.null2264:remap:1.0-SNAPSHOT")
55-
implementation("net.fabricmc:tiny-mappings-parser:0.3.0+build.17")
56+
implementation("io.github.null2264:remap:1.0.1")
57+
implementation("net.fabricmc:mapping-io:0.6.1")
5658
testImplementation("io.kotest:kotest-runner-junit5-jvm:$kotestVersion")
5759
testImplementation("io.kotest:kotest-assertions-core-jvm:$kotestVersion")
5860
}
@@ -71,7 +73,6 @@ gradlePlugin {
7173
}
7274
}
7375

74-
7576
if (ENV("S3_ENDPOINT") != null) {
7677
System.setProperty("org.gradle.s3.endpoint", ENV("S3_ENDPOINT"))
7778
}

gradle.properties

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1-
kotestVersion=4.2.2
1+
kotlin.code.style=official
2+
3+
java.version=8
4+
5+
project.name=preprocessor
6+
project.group=dev.deftu
7+
project.version=0.7.0
8+
9+
kotestVersion=4.2.2

gradle/wrapper/gradle-wrapper.jar

4.11 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

100755100644
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=29e49b10984e585d8118b7d0bc452f944e386458df27371b49b4ac1dec4b7fda
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
3+
distributionSha256Sum=d725d707bfabd4dfdc958c624003b3c80accc03f7037b5122c4b1d0ef15cecab
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

gradlew

Lines changed: 153 additions & 107 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)