Skip to content

Commit

Permalink
Gruntle automatic update
Browse files Browse the repository at this point in the history
  • Loading branch information
spiralhalo committed Apr 30, 2023
1 parent 40c88e0 commit e7c93cd
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
22 changes: 11 additions & 11 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}

plugins {
id 'fabric-loom' version '1.0.9'
id 'fabric-loom' version '1.2.5'
id 'maven-publish'
id 'org.cadixdev.licenser' version '0.6.1'
id 'org.ajoberstar.grgit' version '4.1.1'
Expand All @@ -18,8 +18,8 @@ plugins {
}

ext.platform_name = 'fabric'
ext.loader_version = '0.14.17'
ext.fabric_version = '0.76.0+1.19.4'
ext.loader_version = '0.14.19'
ext.fabric_version = '0.79.0+1.19.4'

apply from: '../project_common.gradle'
apply from: 'project.gradle'
Expand All @@ -32,9 +32,9 @@ dependencies {

// Hat tip to JellySquid
configurations {
modIncludeImplementation
modImplementation.extendsFrom modIncludeImplementation
include.extendsFrom modIncludeImplementation
modIncludeImplementation
modImplementation.extendsFrom modIncludeImplementation
include.extendsFrom modIncludeImplementation
}

loom {
Expand Down Expand Up @@ -96,17 +96,17 @@ publishing {
if (project.version.endsWith('LOCAL') || project.version.endsWith('SNAPSHOT')) {
println "Snapshot build will be local only - not pushed to public maven"
} else {
maven {
url = 'sftp://maven.vram.io:22'
credentials {
if (project.hasProperty('maven_user')) {
maven {
url = 'sftp://maven.vram.io:22'
credentials {
if (project.hasProperty('maven_user')) {
username = project.getProperty('maven_user')
}
if (project.hasProperty('maven_password')) {
password = project.getProperty('maven_password')
}
}
}
}
}
}
}
Expand Down
16 changes: 8 additions & 8 deletions fabric/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
// DO NOT MAKE CHANGES HERE - THEY WILL BE OVERWRITTEN BY AUTOMATED UPDATE

pluginManagement {
repositories {
mavenCentral()
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
gradlePluginPortal()
}
repositories {
mavenCentral()
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
gradlePluginPortal()
}
}
4 changes: 2 additions & 2 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}

plugins {
id 'dev.architectury.loom' version '1.0.305'
id 'dev.architectury.loom' version '1.1.335'
id 'maven-publish'
id 'org.cadixdev.licenser' version '0.6.1'
id 'org.ajoberstar.grgit' version '4.1.1'
Expand All @@ -19,7 +19,7 @@ plugins {
}

ext.platform_name = 'forge'
ext.forge_version = '44.0.7'
ext.forge_version = '45.0.49'

configurations {
bundle { transitive = false }
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-7.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit e7c93cd

Please sign in to comment.