This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
school-projects/build.gradle.kts

24 lines
403 B
Plaintext

plugins {
java
id("com.github.johnrengelman.shadow") version "7.0.0"
}
group = "io.gitlab.jfronny"
version = "1.0"
repositories {
mavenCentral()
}
dependencies {
fun dependency(dependencyNotation: Any) {
implementation(dependencyNotation)
shadow(dependencyNotation)
}
dependency("org.jdom:jdom:1.1")
}
tasks.getByName<Test>("test") {
useJUnitPlatform()
}