mirror of
https://github.com/guilhermewerner/redes
synced 2025-06-16 15:05:40 +00:00
Update project structure
This commit is contained in:
18
client/build.gradle
Normal file
18
client/build.gradle
Normal file
@ -0,0 +1,18 @@
|
||||
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")
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user