/* * Copyright 2019 ConsenSys AG. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. */ dependencies { testImplementation 'junit:junit' testImplementation 'net.consensys:orion' testImplementation 'org.apache.tuweni:tuweni-crypto' testImplementation 'org.assertj:assertj-core' testImplementation 'org.web3j:abi' testImplementation 'org.web3j:besu' testImplementation project(':ethereum:api') testImplementation project(':acceptance-tests:dsl') testImplementation project(':enclave') testImplementation 'org.awaitility:awaitility' testImplementation project(':consensus:clique') testImplementation project(':ethereum:permissioning') testImplementation project(':util') testImplementation project(':plugin-api') testImplementation project(':besu') testImplementation project(':ethereum:core') testImplementation project(path: ':ethereum:core', configuration: 'testSupportArtifacts') testImplementation project(':testutil') testImplementation 'tech.pegasys.ethsigner.internal:core' testImplementation 'tech.pegasys.ethsigner.internal:file-based' } test.enabled = false sourceSets { test { resources { srcDirs "${rootDir}/besu/build/libs" } } } processTestResources.dependsOn(':besu:testJar') task acceptanceTest(type: Test) { dependsOn(rootProject.installDist) systemProperty 'acctests.runBesuAsProcess', 'true' mustRunAfter rootProject.subprojects*.test description = 'Runs Besu acceptance tests.' group = 'verification' }