-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
7dcba4f
commit 9a18d20
Showing
66 changed files
with
1,531 additions
and
1,126 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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Automatically build the project and run any configured tests for every push | ||
# and submitted pull request. This can help catch issues that only occur on | ||
# certain platforms or Java versions, and provides a first line of defence | ||
# against bad commits. | ||
|
||
name: build | ||
on: [pull_request, push] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
# Use these Java versions | ||
java: [ | ||
17, # Current Java LTS & minimum supported by Minecraft | ||
] | ||
# and run on both Linux and Windows | ||
os: [ubuntu-22.04, windows-2022] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: checkout repository | ||
uses: actions/checkout@v3 | ||
- name: validate gradle wrapper | ||
uses: gradle/wrapper-validation-action@v1 | ||
- name: setup jdk ${{ matrix.java }} | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
distribution: 'microsoft' | ||
- name: make gradle wrapper executable | ||
if: ${{ runner.os != 'Windows' }} | ||
run: chmod +x ./gradlew | ||
- name: build | ||
run: ./gradlew build | ||
- name: capture build artifacts | ||
if: ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from latest java on one OS | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Artifacts | ||
path: build/libs/ |
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 |
---|---|---|
|
@@ -31,3 +31,10 @@ bin/ | |
# fabric | ||
|
||
run/ | ||
|
||
# java | ||
|
||
hs_err_*.log | ||
replay_*.log | ||
*.hprof | ||
*.jfr |
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,91 @@ | ||
plugins { | ||
id 'fabric-loom' version '1.4-SNAPSHOT' | ||
id 'maven-publish' | ||
id "org.jetbrains.kotlin.jvm" version "1.9.10" | ||
} | ||
|
||
version = "mc${ project.minecraft_version }-v${ project.mod_version }" | ||
group = project.maven_group | ||
|
||
base { archivesName = project.archives_base_name } | ||
|
||
repositories { | ||
|
||
// Add repositories to retrieve artifacts from in here. | ||
// You should only use this when depending on other mods because | ||
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically. | ||
// See https://docs.gradle.org/current/userguide/declaring_repositories.html | ||
// for more information about repositories. | ||
|
||
maven { url = "https://jitpack.io" } | ||
|
||
} | ||
|
||
dependencies { | ||
|
||
// To change the versions see the gradle.properties file | ||
minecraft "com.mojang:minecraft:${project.minecraft_version}" | ||
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" | ||
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" | ||
|
||
// Fabric API. This is technically optional, but you probably want it anyway. | ||
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" | ||
modImplementation "net.fabricmc:fabric-language-kotlin:${project.fabric_kotlin_version}" | ||
// Uncomment the following line to enable the deprecated Fabric API modules. | ||
// These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time. | ||
|
||
// modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}" | ||
|
||
implementation "com.fasterxml.jackson.core:jackson-annotations:2.14.1" | ||
implementation "com.fasterxml.jackson.core:jackson-core:2.14.1" | ||
implementation "com.fasterxml.jackson.core:jackson-databind:2.14.1" | ||
implementation "com.github.sapher:youtubedl-java:1.1" | ||
implementation "net.bramp.ffmpeg:ffmpeg:0.7.0" | ||
implementation "commons-validator:commons-validator:1.7" | ||
implementation "com.squareup.okhttp:okhttp:2.7.5" | ||
implementation "com.googlecode.soundlibs:mp3spi:1.9.5.4" | ||
|
||
} | ||
|
||
processResources { | ||
|
||
inputs.property "version", project.version | ||
|
||
filesMatching("fabric.mod.json") { expand "version": project.version } | ||
|
||
} | ||
|
||
tasks.withType(JavaCompile).configureEach { it.options.release = 17 } | ||
|
||
tasks.withType( org.jetbrains.kotlin.gradle.tasks.KotlinCompile ).all { | ||
kotlinOptions { jvmTarget = 17 } | ||
} | ||
|
||
java { | ||
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task | ||
// if it is present. | ||
// If you remove this line, sources will not be generated. | ||
withSourcesJar() | ||
|
||
sourceCompatibility = JavaVersion.VERSION_17 | ||
targetCompatibility = JavaVersion.VERSION_17 | ||
} | ||
|
||
jar { | ||
from("LICENSE") { rename { "${it}_${ project.base.archivesName.get() }" } } | ||
} | ||
|
||
// configure the maven publication | ||
publishing { | ||
|
||
publications { mavenJava(MavenPublication) { from components.java } } | ||
|
||
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. | ||
repositories { | ||
// Add repositories to publish to here. | ||
// Notice: This block does NOT have the same function as the block in the top level. | ||
// The repositories here will be used for publishing your artifact, not for | ||
// retrieving dependencies. | ||
} | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
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,17 +1,18 @@ | ||
kotlin.code.style = official | ||
org.gradle.jvmargs = -Xmx1G | ||
org.gradle.warning.mode = all | ||
# Check these on https://fabricmc.net/versions.html | ||
minecraftVersion = 1.19.3 | ||
yarnMappings = 1.19.3+build.5 | ||
loaderVersion = 0.14.22 | ||
# Fabric API | ||
fabricVersion = 0.76.1+1.19.3 | ||
loomVersion = 1.0-SNAPSHOT | ||
# Done to increase the memory available to gradle. | ||
org.gradle.jvmargs=-Xmx1G | ||
org.gradle.parallel=true | ||
|
||
# Fabric Properties | ||
# check these on https://fabricmc.net/develop | ||
minecraft_version=1.19.3 | ||
yarn_mappings=1.19.3+build.5 | ||
loader_version=0.14.22 | ||
fabric_kotlin_version=1.10.10+kotlin.1.9.10 | ||
|
||
# Mod Properties | ||
modVersion = mc1.19.3-v4.0.0 | ||
mavenGroup = com.enginemachiner | ||
archivesBaseName = honkytones | ||
# Kotlin | ||
systemProp.kotlinVersion = 1.6.21 | ||
fabricKotlinVersion = 1.7.4+kotlin.1.6.21 | ||
mod_version=1.4.0.2 | ||
maven_group=com.enginemachiner.honkytones | ||
archives_base_name=honkytones | ||
|
||
# Dependencies | ||
fabric_version=0.76.1+1.19.3 |
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,5 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.