TVPN/build.gradle
2024-10-08 21:12:15 -04:00

24 lines
390 B
Groovy

plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
group = 'tech.nevets'
version = '0.1.0'
repositories {
mavenCentral()
}
dependencies {
implementation "com.miglayout:miglayout:3.7.4"
implementation "com.formdev:flatlaf:3.5.1"
}
jar {
manifest {
attributes(
'Main-Class': 'tech.nevets.tvpn.Main'
)
}
}