apply plugin: 'java-library' jar { baseName 'pantheon-trie' manifest { attributes('Implementation-Title': baseName, 'Implementation-Version': project.version) } } dependencies { implementation project(':crypto') implementation project(':ethereum:rlp') implementation project(':services:kvstore') implementation 'com.google.guava:guava' implementation 'org.bouncycastle:bcprov-jdk15on' testImplementation project(path: ':ethereum:referencetests', configuration: 'testOutput') testImplementation project(':testutil') testImplementation 'com.fasterxml.jackson.core:jackson-databind' testImplementation 'junit:junit' testImplementation 'org.mockito:mockito-core' testImplementation 'org.assertj:assertj-core' }