This repository has been archived on 2023-06-09. You can view files and clone it, but cannot push or open issues or pull requests.
Flan-s-Mod-Updater/build.gradle

47 lines
929 B
Groovy
Raw Permalink Normal View History

2020-01-05 13:09:53 +01:00
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.jengelman.gradle.plugins:shadow:4.0.4"
}
}
2020-01-05 10:03:36 +01:00
plugins {
id 'java'
}
2020-01-05 13:09:53 +01:00
apply plugin: "com.github.johnrengelman.shadow"
2020-01-05 10:03:36 +01:00
apply plugin: 'java'
group 'flansupdater'
2020-01-05 13:09:53 +01:00
version '1.1'
2020-01-05 10:03:36 +01:00
sourceCompatibility = 1.8
targetCompatibility = 1.8
2020-01-05 13:09:53 +01:00
2020-01-05 10:03:36 +01:00
compileJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
}
dependencies {
compile group: 'commons-io', name: 'commons-io', version: '2.4'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
compile group: 'net.lingala.zip4j', name: 'zip4j', version: '2.2.8'
2020-01-05 13:09:53 +01:00
implementation 'org.zeroturnaround:zt-zip:1.13'
2020-01-05 10:03:36 +01:00
}
jar {
baseName = 'flans-updater'
2020-01-05 13:09:53 +01:00
version = '0.1'
2020-01-05 10:03:36 +01:00
manifest {
attributes(
'Main-Class': 'ch.m4th1eu.flansupdater.Main'
)
}
}