Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
TexBlock committed Sep 2, 2023
1 parent 43fd306 commit 039f16b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 84 deletions.
61 changes: 0 additions & 61 deletions CHANGELOG.md

This file was deleted.

9 changes: 0 additions & 9 deletions HEADER

This file was deleted.

11 changes: 4 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,20 @@ Add this to your `build.gradle` in addition of the base Forge mod `build.gradle`
```groovy
repositories {
mavenLocal()
maven {
name 'Gegy'
url 'https://maven.gegy.dev'
}
maven { url 'https://www.jitpack.io' }
}
dependencies {
/* Fabric definitions */
/* ArchLoom definitions */
include modImplementation("dev.lambdaurora:spruceui:${project.spruceui_version}")
include modImplementation("com.github.ThinkingStudios:SpruceUI-Forged:${project.spruceui_version}")
}
```

And this to your `gradle.properties`:

```properties
spruceui_version=5.0.0+1.20
spruceui_version=0.1.0+1.20.1
```

It will JAR-in-JAR SpruceUI so users of your mod don't need to download it separately!
9 changes: 2 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,6 @@ repositories {
}
}

configurations {
api.extendsFrom libApi
}

dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "org.quiltmc:quilt-mappings:${project.quilt_mappings}:intermediary-v2"
Expand All @@ -53,8 +49,7 @@ dependencies {
}

java {
sourceCompatibility = JavaVersion.toVersion(targetJavaVersion)
targetCompatibility = JavaVersion.toVersion(targetJavaVersion)
sourceCompatibility = targetCompatibility = JavaVersion.toVersion(targetJavaVersion)

withSourcesJar()
}
Expand All @@ -69,7 +64,7 @@ tasks.withType(JavaCompile).configureEach {
processResources {
inputs.property 'version', project.version

filesMatching('fabric.mod.json') {
filesMatching('META-INF/mods.toml') {
expand 'version': project.version
}
}
Expand Down

0 comments on commit 039f16b

Please sign in to comment.