summaryrefslogtreecommitdiff
path: root/enigma-server/build.gradle
blob: 27645589327ebe23ea4d16028df77a86180a7b5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
plugins {
    id 'application'
}

dependencies {
    implementation project(':enigma')
    implementation 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3'
}

mainClassName = 'cuchaz.enigma.network.DedicatedEnigmaServer'

jar.manifest.attributes 'Main-Class': mainClassName