Update project structure

This commit is contained in:
Guilherme Werner
2023-06-18 17:06:23 -03:00
parent e360815344
commit 3526246e1d
18 changed files with 60 additions and 164 deletions

18
server/build.gradle Normal file
View 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.ServerApp")
}
}