Skip to content

Commit

Permalink
1.20 progress
Browse files Browse the repository at this point in the history
  • Loading branch information
xanthian committed Jul 15, 2023
1 parent 3cbb43d commit 60bf496
Show file tree
Hide file tree
Showing 377 changed files with 395 additions and 1,104 deletions.
48 changes: 31 additions & 17 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,21 @@ base {
}

repositories {
maven { url "https://maven.shedaniel.me/" }
maven { url 'https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/' } // Required for Geckolib
maven { url 'https://jitpack.io' } // Required for Dawn API
maven { url 'https://maven.terraformersmc.com/' } // Required for Mod Menu and Terraform APIs
maven { url 'https://maven.shedaniel.me/' } // Required for Cloth Config
maven { url 'https://maven.ryanliptak.com/' } // Required for AppleSkin
maven { url 'https://maven.minecraftforge.net/' } // Required for TerraBlender
maven { url "https://cursemaven.com/"
content {
includeGroup "curse.maven"
}
}
}

loom {
runs {
// This adds a new gradle task that runs the datagen API: "gradlew runDatagen"
datagen {
inherit server
name "Data Generation"
Expand All @@ -29,7 +38,6 @@ loom {
}
}

// Add the generated resources to the main source set
sourceSets {
main {
resources {
Expand All @@ -49,9 +57,26 @@ dependencies {

modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

//Tech Reborn
modCompileOnly ("TechReborn:TechReborn-${project.techreborn_version}") { exclude group: "net.fabricmc.fabric-api" exclude group: "RebornCore"}
modCompileOnly ("RebornCore:RebornCore-${project.reborncore_version}") { exclude group: "net.fabricmc.fabric-api"}
// Ad Astra
modImplementation("curse.maven:adastra-635042:4643678")

// BetterArcheology
modImplementation("curse.maven:betterarcheology-835687:4600694")

// Helions Sniffer
modImplementation("curse.maven:hellionssiffer-871962:4591532")

// Promenade
modImplementation("curse.maven:promenade-399648:4611967")
modRuntimeOnly("com.github.DawnTeamMC:DawnAPI:5.0.0")
modRuntimeOnly("com.terraformersmc:biolith:1.0.0-alpha.7")

// Tech Reborn
modImplementation("TechReborn:TechReborn-1.20:5.8.3") {
exclude group:"RebornCore" exclude group: "net.fabricmc.fabric-api" exclude group: "me.shedaniel" exclude group: "me.shedaniel.cloth" exclude group: "dev.architectury"
}
modRuntimeOnly("RebornCore:RebornCore-1.20:5.8.3")

}

processResources {
Expand All @@ -67,11 +92,7 @@ tasks.withType(JavaCompile).configureEach {
}

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
}
Expand All @@ -82,19 +103,12 @@ jar {
}
}

// 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.
}
}
6 changes: 1 addition & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,4 @@ fabric_version=0.85.0+1.20.1
# Mod Properties
mod_version=6.0
maven_group=xanthian
archives_base_name=variantcraftingtables
techreborn_version=1.20:5.8.3
reborncore_version=1.20:5.8.3


archives_base_name=variantcraftingtables

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"block.variantcraftingtables.jungle_crafting_table": "Jungle Crafting Table",
"block.variantcraftingtables.mangrove_crafting_table": "Mangrove Crafting Table",
"block.variantcraftingtables.spruce_crafting_table": "Spruce Crafting Table",
"block.variantcraftingtables.tr_rubber_crafting_table": "Rubber Crafting Table",
"block.variantcraftingtables.warped_crafting_table": "Warped Crafting Table",
"variantcraftingtables.group.variantcraftingtables": "Variant Crafting Tables"
}

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions src/main/generated/data/c/tags/blocks/workbench.json

This file was deleted.

6 changes: 0 additions & 6 deletions src/main/generated/data/c/tags/items/workbench.json

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 60bf496

Please sign in to comment.