Skip to content

Commit 2834be4

Browse files
committed
Use simplified ApexGradle
1 parent 55d15c2 commit 2834be4

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

build.gradle.kts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
plugins {
2-
id("apex-conventions.neoforge") version "0.1.88"
3-
id("apex-conventions.maven-publishing") version "0.1.88"
4-
id("apex-conventions.jspecify") version "0.1.88"
2+
id("apex-conventions.neoforge")
3+
id("apex-conventions.maven-publishing")
4+
id("apex-conventions.jspecify")
55
}
66

77
group = "dev.apexstudios"
8-
9-
apex.neoVersion("26.1.0.0-alpha.5+snapshot-2")
10-
apex.extendCompilerErrors()
8+
neoForge.version = "26.1.0.0-alpha.5+snapshot-2"
119

1210
tasks.withType<Jar> {
1311
manifest {

settings.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ pluginManagement {
33
maven("https://maven.apexstudios.dev/proxy")
44
gradlePluginPortal()
55
}
6+
7+
resolutionStrategy {
8+
eachPlugin {
9+
if(requested.id.namespace == "apex-conventions") {
10+
useVersion("0.1.90")
11+
}
12+
}
13+
}
614
}
715

816
plugins {

0 commit comments

Comments
 (0)