Skip to content

Commit

Permalink
Major cleanup; Bump version to v1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rdvdev2 committed Oct 10, 2020
1 parent 6a3b1e8 commit 6bc0aad
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 30 deletions.
23 changes: 1 addition & 22 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,25 +47,4 @@ task sourcesJar(type: Jar, dependsOn: classes) {

jar {
from "LICENSE"
}

// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
// add all the jars that should be included when publishing to maven
artifact(remapJar) {
builtBy remapJar
}
artifact(sourcesJar) {
builtBy remapSourcesJar
}
}
}

// select the repositories you want to publish to
repositories {
// uncomment to publish to the local maven
// mavenLocal()
}
}
}
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.16.2
yarn_mappings=1.16.2+build.6
loader_version=0.9.1+build.205
minecraft_version=1.16.3
yarn_mappings=1.16.3+build.31
loader_version=0.10.1+build.209
# Mod Properties
mod_version=1.0
mod_version=1.1
maven_group=com.rdvdev2
archives_base_name=DisableCustomWorldsAdvice

4 changes: 1 addition & 3 deletions src/main/resources/DisableCustomWorldsAdvice.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@
"minVersion": "0.8",
"package": "com.rdvdev2.disablecustomworldsadvice.mixin",
"compatibilityLevel": "JAVA_8",
"mixins": [
"MixinMinecraftClient"
],
"client": [
"MixinMinecraftClient"
],
"injectors": {
"defaultRequire": 1
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"license": "GPL-3.0",
"icon": "assets/DisableCustomWorldsAdvice/icon.png",
"environment": "client",
"entrypoints": {},
"mixins": [
"DisableCustomWorldsAdvice.mixins.json"
],
Expand Down

0 comments on commit 6bc0aad

Please sign in to comment.