mirror of https://github.com/hyperledger/besu
Moving AT DSL into its own module (#3)
This allows the acceptance testing DSL to be published as part of the Besu internal jar files - which in turn means the DSL can be reused in other projects. Signed-off-by: Trent Mohay <trent.mohay@consensys.net>pull/8/head
parent
1ff1b2f5d6
commit
79bd915e2e
@ -0,0 +1,47 @@ |
||||
dependencies { |
||||
|
||||
implementation 'org.apache.logging.log4j:log4j-core' |
||||
implementation 'org.apache.logging.log4j:log4j-slf4j-impl' |
||||
|
||||
implementation project(':config') |
||||
implementation project(':consensus:clique') |
||||
implementation project(':consensus:ibft') |
||||
implementation project(':crypto') |
||||
implementation project(':enclave') |
||||
implementation project(':ethereum:blockcreation') |
||||
implementation project(':ethereum:core') |
||||
implementation project(path: ':ethereum:core', configuration: 'testSupportArtifacts') |
||||
implementation project(':ethereum:eth') |
||||
implementation project(':ethereum:api') |
||||
implementation project(':ethereum:p2p') |
||||
implementation project(':ethereum:permissioning') |
||||
implementation project(':ethereum:rlp') |
||||
implementation project(':metrics:core') |
||||
implementation project(':besu') |
||||
implementation project(':plugin-api') |
||||
implementation project(':plugins:rocksdb') |
||||
implementation project(':services:kvstore') |
||||
implementation project(':testutil') |
||||
implementation project(':util') |
||||
|
||||
implementation 'com.github.tomakehurst:wiremock-jre8' |
||||
implementation 'com.google.guava:guava' |
||||
implementation 'com.squareup.okhttp3:okhttp' |
||||
implementation 'info.picocli:picocli' |
||||
implementation 'io.reactivex.rxjava2:rxjava' |
||||
implementation 'io.vertx:vertx-core' |
||||
implementation 'junit:junit' |
||||
implementation 'net.consensys:orion' |
||||
implementation 'org.apache.logging.log4j:log4j-api' |
||||
implementation 'org.assertj:assertj-core' |
||||
implementation 'org.awaitility:awaitility' |
||||
implementation 'org.java-websocket:Java-WebSocket' |
||||
implementation 'org.web3j:abi' |
||||
implementation 'org.web3j:pantheon' |
||||
implementation 'org.web3j:crypto' |
||||
implementation 'tech.pegasys.ethsigner.internal:core' |
||||
implementation 'tech.pegasys.ethsigner.internal:file-based' |
||||
implementation 'tech.pegasys.ethsigner.internal:signing-api' |
||||
|
||||
|
||||
} |
0
acceptance-tests/src/test-support/java/org/hyperledger/besu/tests/acceptance/dsl/condition/eth/ExpectSuccessfulEthGetTransactionReceiptWithReason.java → acceptance-tests/dsl/src/main/java/org/hyperledger/besu/tests/acceptance/dsl/condition/eth/ExpectSuccessfulEthGetTransactionReceiptWithReason.java
0
acceptance-tests/src/test-support/java/org/hyperledger/besu/tests/acceptance/dsl/condition/eth/ExpectSuccessfulEthGetTransactionReceiptWithReason.java → acceptance-tests/dsl/src/main/java/org/hyperledger/besu/tests/acceptance/dsl/condition/eth/ExpectSuccessfulEthGetTransactionReceiptWithReason.java
0
acceptance-tests/src/test-support/java/org/hyperledger/besu/tests/acceptance/dsl/condition/eth/ExpectSuccessfulEthGetTransactionReceiptWithoutReason.java → acceptance-tests/dsl/src/main/java/org/hyperledger/besu/tests/acceptance/dsl/condition/eth/ExpectSuccessfulEthGetTransactionReceiptWithoutReason.java
0
acceptance-tests/src/test-support/java/org/hyperledger/besu/tests/acceptance/dsl/condition/eth/ExpectSuccessfulEthGetTransactionReceiptWithoutReason.java → acceptance-tests/dsl/src/main/java/org/hyperledger/besu/tests/acceptance/dsl/condition/eth/ExpectSuccessfulEthGetTransactionReceiptWithoutReason.java
0
acceptance-tests/src/test-support/java/org/hyperledger/besu/tests/acceptance/dsl/condition/net/ExpectNetVersionPermissionJsonRpcUnauthorizedResponse.java → acceptance-tests/dsl/src/main/java/org/hyperledger/besu/tests/acceptance/dsl/condition/net/ExpectNetVersionPermissionJsonRpcUnauthorizedResponse.java
0
acceptance-tests/src/test-support/java/org/hyperledger/besu/tests/acceptance/dsl/condition/net/ExpectNetVersionPermissionJsonRpcUnauthorizedResponse.java → acceptance-tests/dsl/src/main/java/org/hyperledger/besu/tests/acceptance/dsl/condition/net/ExpectNetVersionPermissionJsonRpcUnauthorizedResponse.java
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue