diff options
author | Linnea Gräf <nea@nea.moe> | 2024-07-12 18:23:37 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-07-12 18:23:37 +0200 |
commit | 6671846319d1fcc5b8b999a77f297b098763535d (patch) | |
tree | 217b1b73dd610fe1ffb948bf47d3690cae78964a /build.gradle | |
parent | 3a60715b57d9af5ad63d20465504214979a7c85d (diff) | |
download | HyPixelForgeModAPI-6671846319d1fcc5b8b999a77f297b098763535d.tar.gz HyPixelForgeModAPI-6671846319d1fcc5b8b999a77f297b098763535d.tar.bz2 HyPixelForgeModAPI-6671846319d1fcc5b8b999a77f297b098763535d.zip |
Diffstat (limited to 'build.gradle')
-rwxr-xr-x | build.gradle | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/build.gradle b/build.gradle index b6ba6fd..36577c8 100755 --- a/build.gradle +++ b/build.gradle @@ -11,20 +11,22 @@ buildscript { } } apply plugin: 'net.minecraftforge.gradle.forge' +allprojects { + version = "1.0.0.1" // First 3 numbers should correspond to the version of the API, last number is for the mod itself for any changes/fixes + group = "net.hypixel.modapi" // http://maven.apache.org/guides/mini/guide-naming-conventions.html + archivesBaseName = "HypixelModAPI" -version = "1.0.0.1" // First 3 numbers should correspond to the version of the API, last number is for the mod itself for any changes/fixes -group = "net.hypixel.modapi" // http://maven.apache.org/guides/mini/guide-naming-conventions.html -archivesBaseName = "HypixelModAPI" -sourceCompatibility = 1.8 -targetCompatibility = 1.8 - -repositories { - maven { - url "https://repo.hypixel.net/repository/Hypixel/" + repositories { + maven { + url "https://repo.hypixel.net/repository/Hypixel/" + } + mavenLocal() } - mavenLocal() } +sourceCompatibility = 1.8 +targetCompatibility = 1.8 + minecraft { version = "1.8.9-11.15.1.1722" // version = "1.8.9-11.15.1.2318-1.8.9" |