Skip to content

Commit

Permalink
y u no build
Browse files Browse the repository at this point in the history
  • Loading branch information
screret committed Jan 18, 2024
1 parent f09ca29 commit 0e4c54b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

apply plugin: "dev.architectury.loom"
apply plugin: "io.github.juuxel.loom-vineflower"
//apply plugin: "io.github.juuxel.loom-vineflower"
apply plugin: "java"
apply plugin: "architectury-plugin"
apply plugin: "maven-publish"
Expand All @@ -20,9 +20,9 @@ String buildNumber = System.getenv("GITHUB_ACTION_NUMBER")
version = "${mod_version}" + (buildNumber != null ? "-build_${System.getenv("GITHUB_RUN_NUMBER")}" : "")


tasks.withType(JavaCompile) {
tasks.withType(JavaCompile).configureEach {
options.encoding = "UTF-8"
options.release = 17
options.release.set 17
}

java {
Expand Down Expand Up @@ -206,7 +206,7 @@ components.java {
publishing {
publications {
mavenForge(MavenPublication) {
artifactId = rootProject.mod_id + "-" + project.name
artifactId = archivesBaseName
from components.java
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencyResolutionManagement {
def parchmentVersion = "2023.09.03" // https://parchmentmc.org/docs/getting-started
def shadowVersion = "7.1.2"
def architecturyPluginVersion = "3.4-SNAPSHOT"
def architecturyLoomVersion = "1.3-SNAPSHOT"
def architecturyLoomVersion = "1.4-SNAPSHOT"
def vineFlowerVersion = "1.+"
def macheteVersion = "1.+"
def configurationVersion = "2.2.0"
Expand Down

0 comments on commit 0e4c54b

Please sign in to comment.