Felix Ableitner
83fc696cc7
For documentation on how AODVv2 works, see this link: https://datatracker.ietf.org/doc/draft-ietf-manet-aodvv2/ Note that this implementation is incompatible with AODVv2 itself, as various details are changed, and not all features have been implemented
12 lines
333 B
Groovy
12 lines
333 B
Groovy
apply plugin: 'scala'
|
|
apply plugin: 'application'
|
|
|
|
dependencies {
|
|
compile 'org.scala-lang:scala-library:2.11.7'
|
|
compile 'com.github.scala-incubator.io:scala-io-file_2.11:0.4.3'
|
|
compile project(path: ':core')
|
|
}
|
|
|
|
mainClassName = 'com.nutomic.ensichat.integration.Main'
|
|
version = "0.2.3"
|
|
applicationName = 'ensichat-server'
|