[briar-core] Add a getRealHandshakeLink() method to BriarTestUtils

Also allow testOutput from briar-core to be used in briar-headless
This commit is contained in:
Torsten Grote
2019-05-14 14:58:11 -03:00
parent 69e57bee61
commit dc6971734a
2 changed files with 28 additions and 0 deletions

View File

@@ -30,3 +30,15 @@ dependencies {
signature 'org.codehaus.mojo.signature:java16:1.1@signature'
}
// needed to make test output available to briar-headless
configurations {
testOutput.extendsFrom(testCompile)
}
task jarTest(type: Jar, dependsOn: testClasses) {
from sourceSets.test.output
classifier = 'test'
}
artifacts {
testOutput jarTest
}