mirror of
https://github.com/guilhermewerner/redes
synced 2025-06-15 06:25:02 +00:00
19 lines
379 B
Groovy
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")
|
|
}
|
|
}
|