Files
ITMO/Programming/ProgLab6/client/build.gradle
T

16 lines
296 B
Groovy

group = 'com.leterzp.prog.client'
version = '2.0'
dependencies {
implementation project(":general")
}
apply plugin: 'com.gradleup.shadow'
shadowJar {
archiveBaseName.set('ProgLab6.client')
archiveVersion.set('2.0')
manifest {
attributes 'Main-Class': 'ClientKt'
}
}