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
14 lines
401 B
Groovy
14 lines
401 B
Groovy
apply plugin: 'scala'
|
|
|
|
dependencies {
|
|
compile 'org.scala-lang:scala-library:2.11.7'
|
|
compile 'com.h2database:h2:1.4.191'
|
|
compile 'com.typesafe.slick:slick_2.11:3.1.1'
|
|
compile 'com.typesafe.scala-logging:scala-logging_2.11:3.4.0'
|
|
compile 'joda-time:joda-time:2.9.3'
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
|
|
test {
|
|
systemProperty "testDir", new File(buildDir, "/test/").toString()
|
|
}
|