Dependency updates

This commit is contained in:
canitzp 2020-09-04 07:34:25 +02:00
parent 3a7118be0f
commit 5eec8071d0
4 changed files with 23 additions and 32 deletions

12
.gitignore vendored
View file

@ -11,7 +11,6 @@
/lib
/classes
/bin/
/run/
*.classpath
*.project
@ -19,12 +18,5 @@
*.launch
.settings/org.eclipse.jdt.core.prefs
*.prefs
/run/
.DS_Store
src/.DS_Store
src/main/.DS_Store
src/main/java/.DS_Store
src/main/java/de/.DS_Store
src/main/java/de/ellpeck/.DS_Store
src/main/java/de/ellpeck/actuallyadditions/.DS_Store
src/main/java/de/ellpeck/actuallyadditions/mod/.DS_Store
/run/*
*.DS_Store

View file

@ -22,18 +22,18 @@ archivesBaseName = "ActuallyAdditions-1.14.4"
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
minecraft {
mappings channel: "snapshot", version: "20191107-1.14.3"
runs {
mappings channel: "stable", version: "58-1.14.4"
runs {
client = {
properties 'forge.logging.markers': ''
properties 'forge.logging.console.level': 'debug'
workingDirectory project.file('run').canonicalPath
workingDirectory project.file('run/client')
source sourceSets.main
}
server = {
properties 'forge.logging.markers': ''
properties 'forge.logging.console.level': 'debug'
workingDirectory project.file('run/server').canonicalPath
workingDirectory project.file('run/server')
source sourceSets.main
}
data = {
@ -42,8 +42,8 @@ minecraft {
mods {
actuallyadditions {
source sourceSets.main
}
}
}
}
}
}
}
@ -52,27 +52,26 @@ repositories {
maven {
url "https://dvs1.progwml6.com/files/maven"
}
maven {
url "https://tehnut.info/maven"
}
//maven {
// url "https://tehnut.info/maven"
//}
}
dependencies {
minecraft 'net.minecraftforge:forge:1.14.4-28.1.86'
compile fg.deobf('mezz.jei:jei-1.14.4:6.0.0.24')
compile fg.deobf('mcp.mobius.waila:Hwyla:1.10.6-B67_1.14.4')
compile fileTree(dir: 'libs', include: '*.jar')
minecraft 'net.minecraftforge:forge:1.14.4-28.2.0'
compile fg.deobf('mezz.jei:jei-1.14.4:6.0.1.30')
//compile fg.deobf('mcp.mobius.waila:Hwyla:1.10.6-B67_1.14.4')
//compile fileTree(dir: 'libs', include: '*.jar')
}
jar {
manifest {
attributes(["Specification-Title": "actuallyadditions",
"Specification-Vendor": "Ellpeck",
"Specification-Version": "24.0",
"Implementation-Title": project.name,
"Implementation-Version": "${version}",
"Implementation-Vendor" :"Ellpeck",
attributes(["Specification-Title" : "actuallyadditions",
"Specification-Vendor" : "Ellpeck",
"Specification-Version" : "24.0",
"Implementation-Title" : project.name,
"Implementation-Version" : "${version}",
"Implementation-Vendor" : "Ellpeck",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")],)
}
}

View file

@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-all.zip

View file

@ -15,7 +15,7 @@ authors="Ellpeck, Shadows_of_Fire"
[[dependencies.actuallyadditions]]
modId="forge"
mandatory=true
versionRange="[28.1.86,)"
versionRange="[28.2,)"
ordering="NONE"
side="BOTH"