blob: 0daa490ec6036a968d6eea5be9950ff5324514b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
plugins {
id 'application'
}
dependencies {
implementation project(':enigma')
implementation 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3'
}
application {
mainClass = 'cuchaz.enigma.network.DedicatedEnigmaServer'
}
jar.manifest.attributes 'Main-Class': application.mainClass.get()
|