This repository has been archived on 2022-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
waifu2xlemon/build.gradle

23 lines
370 B
Groovy
Raw Normal View History

2021-08-20 03:04:45 -05:00
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
group 'moe.lemonsh'
version '0.2'
2021-08-20 03:04:45 -05:00
jar {
manifest {
attributes 'Main-Class': 'moe.lemonsh.waifu2xlemon.App'
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.slf4j:slf4j-simple:1.7.32'
implementation 'com.sparkjava:spark-core:2.9.3'
}