File: build.gradle

package info (click to toggle)
cava 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,528 kB
  • sloc: java: 33,355; xml: 343; sh: 128; makefile: 6
file content (22 lines) | stat: -rw-r--r-- 695 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
description = 'Ethereum ÐΞVp2p implementation.'

dependencies {
  compile project(':bytes')
  compile project(':concurrent')
  compile project(':concurrent-coroutines')
  compile project(':crypto')
  compile project(':kademlia')
  compile project(':net-coroutines')
  compile project(':rlp')
  compile 'io.vertx:vertx-core'
  compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core'
  compile 'org.logl:logl-api'

  testCompile project(':junit')
  testCompile 'org.bouncycastle:bcprov-jdk15on'
  testCompile 'org.junit.jupiter:junit-jupiter-api'
  testCompile 'org.junit.jupiter:junit-jupiter-params'
  testCompile 'org.logl:logl-logl'

  testRuntime 'org.junit.jupiter:junit-jupiter-engine'
}