initial
This commit is contained in:
33
build.gradle
Normal file
33
build.gradle
Normal file
@@ -0,0 +1,33 @@
|
||||
plugins {
|
||||
id 'fabric-loom' version '1.7-SNAPSHOT'
|
||||
id 'maven-publish'
|
||||
}
|
||||
|
||||
group = 'com.example'
|
||||
version = '1.0.0'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven { url = "https://maven.fabricmc.net/" }
|
||||
maven { url = "https://maven.architectury.dev/" }
|
||||
maven { url = "https://maven.minecraftforge.net/" }
|
||||
maven { url = "https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/" }
|
||||
maven { url = "https://maven.impactdev.net/repository/development/" }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
minecraft "com.mojang:minecraft:1.21.1"
|
||||
mappings "net.fabricmc:yarn:1.21.1+build.3:v2"
|
||||
modImplementation "net.fabricmc:fabric-loader:0.16.5"
|
||||
|
||||
modImplementation "net.fabricmc.fabric-api:fabric-api:0.106.1+1.21.1"
|
||||
|
||||
// Cobblemon
|
||||
modImplementation "com.cobblemon:fabric:1.7.3+1.21.1"
|
||||
}
|
||||
|
||||
java {
|
||||
withSourcesJar()
|
||||
sourceCompatibility = JavaVersion.VERSION_21
|
||||
targetCompatibility = JavaVersion.VERSION_21
|
||||
}
|
||||
Reference in New Issue
Block a user