-
Notifications
You must be signed in to change notification settings - Fork 6
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 #32 from Yoghurt4C/1.17
- Loading branch information
Showing
15 changed files
with
190 additions
and
234 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
!/build.gradle | ||
!/gradlew | ||
!/gradlew.bat | ||
!/settings.gradle | ||
|
||
# flamingo | ||
!/flamingo-additions.txt |
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,49 +1,34 @@ | ||
import net.fabricmc.loom.LoomGradlePlugin | ||
|
||
buildscript { | ||
repositories { | ||
jcenter() | ||
maven { | ||
name = 'Fabric' | ||
url = 'http://maven.modmuss50.me/' | ||
} | ||
} | ||
dependencies { | ||
classpath "net.fabricmc:fabric-loom:0.4-SNAPSHOT" | ||
} | ||
} | ||
|
||
plugins { | ||
id 'java' | ||
id 'fabric-loom' version '0.8-SNAPSHOT' | ||
id 'eclipse' | ||
id 'java' | ||
id 'idea' | ||
} | ||
|
||
apply plugin: LoomGradlePlugin | ||
|
||
sourceCompatibility = 1.8 | ||
targetCompatibility = 1.8 | ||
sourceCompatibility = 1.16 | ||
targetCompatibility = 1.16 | ||
|
||
group = "com.reddit.user.koppeh.flamingo" | ||
archivesBaseName = "Flamingo" | ||
version = "1.16-1.17" | ||
|
||
minecraft { | ||
} | ||
version = "1.17-1.18" | ||
|
||
dependencies { | ||
minecraft "com.mojang:minecraft:1.16" | ||
mappings "net.fabricmc:yarn:1.16+build.1:v2" | ||
modImplementation "net.fabricmc:fabric-loader:0.8.8+build.202" | ||
modImplementation "net.fabricmc.fabric-api:fabric-api:0.13.1+build.370-1.16" | ||
minecraft "com.mojang:minecraft:1.17" | ||
mappings "net.fabricmc:yarn:1.17+build.1:v2" | ||
modImplementation "net.fabricmc:fabric-loader:0.11.3" | ||
modImplementation "net.fabricmc.fabric-api:fabric-api:0.34.9+1.17" | ||
} | ||
|
||
processResources { | ||
from(sourceSets.main.resources.srcDirs) { | ||
include 'fabric.mod.json' | ||
expand version: project.version | ||
} | ||
from(sourceSets.main.resources.srcDirs) { | ||
exclude 'fabric.mod.json' | ||
inputs.property "version", project.version | ||
|
||
filesMatching("fabric.mod.json") { | ||
expand "version": project.version | ||
} | ||
} | ||
|
||
|
||
tasks.withType(JavaCompile).configureEach { | ||
it.options.encoding = "UTF-8" | ||
it.options.release = 16 | ||
} |
Binary file not shown.
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,6 +1,6 @@ | ||
#Sun Nov 11 14:39:10 PST 2018 | ||
#Fri May 28 05:23:29 AST 2021 | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip | ||
zipStoreBase=GRADLE_USER_HOME |
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,9 @@ | ||
pluginManagement { | ||
repositories { | ||
maven { | ||
name = 'Fabric' | ||
url = 'https://maven.fabricmc.net/' | ||
} | ||
gradlePluginPortal() | ||
} | ||
} |
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
Oops, something went wrong.