Remove unused dependency and fix stdin run error
This commit is contained in:
parent
172f9d48a3
commit
d51cbc6d75
1 changed files with 5 additions and 2 deletions
|
@ -1,6 +1,5 @@
|
|||
plugins {
|
||||
id 'application'
|
||||
id 'com.github.johnrengelman.shadow' version '6.1.0'
|
||||
}
|
||||
|
||||
group 'fr.insa.clavardator.server'
|
||||
|
@ -15,4 +14,8 @@ dependencies {
|
|||
implementation 'org.jetbrains:annotations:20.1.0'
|
||||
}
|
||||
|
||||
mainClassName = 'fr.insa.clavardator.server.Main'
|
||||
mainClassName = 'fr.insa.clavardator.server.Main'
|
||||
|
||||
run{
|
||||
standardInput = System.in
|
||||
}
|
Loading…
Reference in a new issue