Skip to content

Commit

Permalink
Update to MC 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrofab committed Aug 6, 2023
1 parent 535cb63 commit 057e73a
Show file tree
Hide file tree
Showing 17 changed files with 323 additions and 164 deletions.
24 changes: 22 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'io.github.ladysnake.chenille' version '0.10.2'
id 'io.github.ladysnake.chenille' version '0.11.3'
}

sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17
Expand All @@ -10,7 +10,7 @@ group = project.maven_group

chenille {
configurePublishing {
withArtifactory()
withLadysnakeMaven()
withCurseforgeRelease()
withGithubRelease()
withModrinthRelease()
Expand Down Expand Up @@ -63,6 +63,7 @@ dependencies {

modRuntimeOnly ("com.terraformersmc:modmenu:${modmenu_version}") {
exclude group: 'net.fabricmc.fabric-api'
exclude group: 'net.fabricmc'
}

// modRuntime "curse.maven:mobz-336554:2826831"
Expand All @@ -80,4 +81,23 @@ java {
// if it is present.
// If you remove this line, sources will not be generated.
withSourcesJar()
}

publishing {
publications {
create("relocation", MavenPublication) {
pom {
// Old artifact coordinates
groupId = "io.github.ladysnake"

distributionManagement {
relocation {
// New artifact coordinates
groupId = "org.ladysnake"
message = "groupId has been changed"
}
}
}
}
}
}
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
------------------------------------------------------
Version 1.13.0
------------------------------------------------------
Updated to MC 1.20

------------------------------------------------------
Version 1.12.0
------------------------------------------------------
Expand Down
18 changes: 9 additions & 9 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
# Dependencies: Visit https://lambdaurora.dev/tools/import_quilt.html and the Quilt Community Discord (https://discord.com/invite/M7GpuyTBvy) for dependency version info.
minecraft_version = 1.19.4
quilt_mappings = 7
quilt_loader_version=0.18.6
minecraft_version = 1.20.1
quilt_mappings = 23
quilt_loader_version=0.20.0-beta.11

# NOTE: Uncomment the line below if using QSL by itself instead of Quilted Fabric API
qsl_version = 5.0.0-beta.1
qsl_version = 6.1.0
# NOTE: Comment out the line below if *not* using Quilted Fabric API.
quilted_fabric_api_version = 6.0.0-beta.2+0.76.0
quilted_fabric_api_version = 7.1.0+0.86.1

# Base properties
mod_name = Creeper Spores
mod_version = 1.12.0
mod_version = 1.13.0
owners = Ladysnake
maven_group = io.github.ladysnake

#Other Dependencies
modmenu_version=5.0.2
modmenu_version=7.2.1
#Publishing
license_header = LGPL
gpl_version = 3
modrinth_id = WSdgoMoj
curseforge_id = 331636
curseforge_versions = 1.19.4
modrinth_versions = 1.19.4
curseforge_versions = 1.20; 1.20.1
modrinth_versions = 1.20; 1.20.1
release_type = release

# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 057e73a

Please sign in to comment.