Skip to content

Commit

Permalink
update to 1.16.5
Browse files Browse the repository at this point in the history
  • Loading branch information
zlainsama committed Jan 17, 2021
1 parent d887049 commit d10886e
Showing 1 changed file with 5 additions and 20 deletions.
25 changes: 5 additions & 20 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ buildscript {
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'

import net.minecraftforge.gradle.common.task.SignJar

version = "1.16.4-v1"
version = "1.16.5-v1"
group = "lain.mods.cleanview"
archivesBaseName = "CleanView"

Expand All @@ -23,8 +21,10 @@ minecraft {
mappings channel: 'snapshot', version: '20201028-1.16.3'
}

sourceSets.main.resources { srcDir 'src/generated/resources' }

dependencies {
minecraft 'net.minecraftforge:forge:1.16.4-35.0.1'
minecraft 'net.minecraftforge:forge:1.16.5-36.0.0'
}

processResources {
Expand All @@ -43,19 +43,4 @@ jar {
}
}

task signJar(type: SignJar, dependsOn: jar) {
onlyIf {
project.hasProperty('mcModsStore')
}

if (project.hasProperty('mcModsStore')) {
keyStore = project.mcModsStore
alias = project.mcModsAlias
storePass = project.mcModsStorePass
keyPass = project.mcModsKeyPass
inputFile = jar.archivePath
outputFile = jar.archivePath
}
}

build.dependsOn signJar
jar.finalizedBy('reobfJar')

0 comments on commit d10886e

Please sign in to comment.