-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from halotroop2288/pr/ornithe
Add Ornithe Maven + Mappings support
- Loading branch information
Showing
15 changed files
with
660 additions
and
12 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
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
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 |
---|---|---|
@@ -0,0 +1,107 @@ | ||
plugins { | ||
id 'java' | ||
id 'xyz.wagyourtail.unimined' // version '1.0.0' | ||
} | ||
|
||
group 'com.example' | ||
//archivesBaseName 'UniminedExampleMod' | ||
version '1.0-SNAPSHOT' | ||
|
||
// this is just here so we can test the outputs easier and clean between tests | ||
unimined.useGlobalCache = false | ||
|
||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
|
||
sourceSets { | ||
fabric { | ||
compileClasspath += sourceSets.main.output | ||
runtimeClasspath += sourceSets.main.output | ||
} | ||
quilt { | ||
compileClasspath += sourceSets.main.output + sourceSets.fabric.output | ||
runtimeClasspath += sourceSets.main.output + sourceSets.fabric.output | ||
} | ||
} | ||
|
||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
} | ||
|
||
unimined.minecraft() { | ||
version "1.2.5" | ||
side "client" | ||
|
||
mappings { | ||
calamus() | ||
feather(20) | ||
|
||
devFallbackNamespace "intermediary" | ||
} | ||
|
||
minecraftRemapper.config { | ||
ignoreConflicts(true) | ||
} | ||
|
||
defaultRemapJar = false | ||
|
||
} | ||
|
||
unimined.minecraft(sourceSets.fabric) { | ||
version "1.2.5" | ||
side "client" | ||
|
||
mappings { | ||
calamus() | ||
feather(20) | ||
} | ||
|
||
minecraftRemapper.config { | ||
ignoreConflicts(true) | ||
} | ||
|
||
fabric { | ||
loader '0.14.24' | ||
} | ||
|
||
defaultRemapJar = false | ||
} | ||
|
||
unimined.minecraft(sourceSets.quilt) { | ||
version "1.2.5" | ||
side "client" | ||
|
||
mappings { | ||
calamus() | ||
feather(20) | ||
} | ||
|
||
minecraftRemapper.config { | ||
ignoreConflicts(true) | ||
} | ||
|
||
quilt { | ||
loader '0.21.2' | ||
} | ||
|
||
defaultRemapJar = false | ||
} | ||
|
||
repositories { | ||
} | ||
|
||
dependencies { | ||
} | ||
|
||
jar { | ||
enabled = false | ||
} | ||
|
||
processResources { | ||
inputs.property "version", project.version | ||
|
||
filesMatching("fabric.mod.json") { | ||
expand "version": project.version | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
org.gradle.jvmargs=-Xmx2G |
7 changes: 7 additions & 0 deletions
7
testing/1.2.5-Fabric-Quilt/gradle/wrapper/gradle-wrapper.properties
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.