Files
redes/client/build.gradle
2023-06-18 17:06:23 -03:00

19 lines
379 B
Groovy

plugins {
id 'application'
}
repositories {
mavenCentral()
}
dependencies {
testImplementation 'junit:junit:4.13.1'
implementation 'com.google.guava:guava:30.0-jre'
}
tasks.named("jar") {
manifest {
attributes("Implementation-Title": rootProject.name, "Implementation-Version": project.version, "Main-Class": "com.example.redes.ClientApp")
}
}