mirror of
https://github.com/corda/corda.git
synced 2025-03-17 17:45:17 +00:00
Behave: fix compilation problem in IntelliJ (#830)
* Sprinkled new gradle dust to make both IntelliJ and TC (gradle) compilation happy. * Fix compilation problem once and for all + ignore the RPCProxyWebServiceTest smoke test.
This commit is contained in:
parent
1425899b95
commit
4afc7f3824
@ -42,6 +42,8 @@ repositories {
|
||||
sourceSets {
|
||||
behave {
|
||||
kotlin {
|
||||
compileClasspath += main.output
|
||||
runtimeClasspath += main.output
|
||||
srcDirs = ['src/main/kotlin', 'src/scenario/kotlin']
|
||||
}
|
||||
resources.srcDir file('src/scenario/resources')
|
||||
@ -56,12 +58,6 @@ sourceSets {
|
||||
srcDirs = ['src/scenario/resources']
|
||||
}
|
||||
}
|
||||
main {
|
||||
kotlin {
|
||||
compileClasspath += sourceSets.behave.output
|
||||
runtimeClasspath += sourceSets.behave.output
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
configurations {
|
||||
@ -182,3 +178,5 @@ task apiJar(type: Jar, dependsOn: classes) {
|
||||
artifacts {
|
||||
testArtifacts apiJar
|
||||
}
|
||||
|
||||
jar.finalizedBy (apiJar, behaveJar)
|
@ -22,6 +22,7 @@ import org.junit.Ignore
|
||||
import org.junit.Test
|
||||
import java.net.URL
|
||||
|
||||
@Ignore
|
||||
class RPCProxyWebServiceTest {
|
||||
|
||||
/**
|
||||
@ -175,7 +176,6 @@ class RPCProxyWebServiceTest {
|
||||
assertVaultHoldsCash(responseA, responseB)
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun startMultiABCPartyCashFlows() {
|
||||
val notary = rpcProxyClient.notaryIdentities()[0]
|
||||
@ -238,7 +238,6 @@ class RPCProxyWebServiceTest {
|
||||
}
|
||||
|
||||
// enable Flow Draining on Node B
|
||||
@Ignore
|
||||
@Test
|
||||
fun startMultiACPartyCashFlows() {
|
||||
val notary = rpcProxyClient.notaryIdentities()[0]
|
||||
|
Loading…
x
Reference in New Issue
Block a user