Compare commits

..

1 Commits

Author SHA1 Message Date
Liz Graham
314eae4917 finally get this to work 2024-01-02 01:48:09 +00:00
2 changed files with 11 additions and 6 deletions

View File

@@ -1,8 +1,9 @@
plugins { plugins {
id 'fabric-loom' version '1.2-SNAPSHOT' id 'fabric-loom' version '1.2-SNAPSHOT'
id 'maven-publish' id 'maven-publish'
} id "dev.architectury.loom" version "1.3-SNAPSHOT" apply(false)
}
sourceCompatibility = JavaVersion.VERSION_17 sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17

View File

@@ -1,10 +1,14 @@
pluginManagement { pluginManagement {
repositories { repositories {
maven { maven { url "https://maven.fabricmc.net/" }
name = 'Fabric' maven { url "https://maven.architectury.dev/" }
url = 'https://maven.fabricmc.net/' maven { url "https://maven.minecraftforge.net/" }
}
mavenCentral()
gradlePluginPortal() gradlePluginPortal()
} }
} }
include("common")
include("fabric")
include("forge")
rootProject.name = "cave_dust"