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 (15 lines) | stat: -rw-r--r-- 438 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
description = 'Classes and utilities for working with Ethereum.'

dependencies {
  compile project(':bytes')
  compile project(':crypto')
  compile project(':rlp')
  compile project(':units')

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

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