-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
120 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
kotlin.code.style=official | ||
|
||
mod_version=3.2.0-beta2 | ||
mod_version=3.1.2 | ||
mod_id=behindyouv3 | ||
mod_name=BehindYouV3 | ||
mod_archives_name=BehindYouV3 | ||
|
||
# Gradle Configuration -- DO NOT TOUCH THESE VALUES. | ||
polyfrost.defaults.loom=1 | ||
org.gradle.daemon=true | ||
org.gradle.parallel=true | ||
org.gradle.configureoncommand=true | ||
org.gradle.parallel.threads=4 | ||
org.gradle.jvmargs=-Xmx3G | ||
polyfrost.defaults.loom=0 | ||
org.gradle.jvmargs=-Xmx2G |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
plugins { | ||
kotlin("jvm") version "1.6.10" apply false | ||
id("net.kyori.blossom") version "1.3.0" apply false | ||
kotlin("jvm") version "1.8.22" apply false | ||
id("org.polyfrost.multi-version.root") | ||
id("com.github.johnrengelman.shadow") version "7.1.2" apply false | ||
id("cc.polyfrost.multi-version.root") | ||
} | ||
|
||
preprocess { | ||
"1.12.2-forge"(11202, "srg") { | ||
"1.8.9-forge"(10809, "srg", file("versions/1.12.2-1.8.9.txt")) | ||
"1.8.9-forge"(10809, "srg") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,31 @@ | ||
@file:Suppress("PropertyName") | ||
|
||
pluginManagement { | ||
repositories { | ||
gradlePluginPortal() | ||
maven("https://repo.polyfrost.cc/releases") | ||
mavenCentral() | ||
maven("https://repo.polyfrost.org/releases") // Adds the Polyfrost maven repository to get Polyfrost Gradle Toolkit | ||
} | ||
plugins { | ||
val egtVersion = "0.1.28" | ||
id("cc.polyfrost.multi-version.root") version egtVersion | ||
val pgtVersion = "0.2.9" // Sets the default versions for Polyfrost Gradle Toolkit | ||
id("org.polyfrost.multi-version.root") version pgtVersion | ||
} | ||
} | ||
|
||
val mod_name: String by settings | ||
|
||
// Configures the root project Gradle name based on the value in `gradle.properties` | ||
rootProject.name = mod_name | ||
rootProject.buildFileName = "root.gradle.kts" | ||
|
||
// Adds all of our build target versions to the classpath if we need to add version-specific code. | ||
listOf( | ||
"1.8.9-forge", | ||
"1.12.2-forge", | ||
"1.8.9-forge", // Update this if you want to remove/add a version, along with `build.gradle.kts` and `root.gradle.kts`. | ||
"1.12.2-forge" | ||
).forEach { version -> | ||
include(":$version") | ||
project(":$version").apply { | ||
projectDir = file("versions/$version") | ||
buildFileName = "../../build.gradle.kts" | ||
} | ||
|
||
} |
Empty file.