From 820ecc70c8a4215d843448e1f219145aea0831b2 Mon Sep 17 00:00:00 2001 From: Timo Ley Date: Tue, 22 Oct 2024 20:05:31 +0200 Subject: [PATCH] chore: use gradlehaxe from maven --- build.gradle | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 94ea7e3..76931e8 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,9 @@ buildscript { repositories { - mavenLocal() + maven { + name = "tilera" + url = "https://maven.tilera.xyz" + } mavenCentral() maven { name = "forge" @@ -15,14 +18,14 @@ buildscript { classpath ('com.anatawa12.forge:ForgeGradle:1.2-1.0.+') { changing = true } - classpath ('net.anvilcraft.gradlehaxe:net.anvilcraft.gradlehaxe.gradle.plugin:0.1.0') { + classpath ('net.anvilcraft:gradlehaxe:0.1.0') { changing = true } } } apply plugin: 'forge' -apply plugin: 'net.anvilcraft.gradlehaxe' +apply plugin: 'haxe' sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8