Tests: Exclude BuildMessageTestStandalone from gradle tests

NPEs via junit; must be run via main()
Already disabled on ant side
This commit is contained in:
zzz
2023-10-21 15:34:13 -04:00
parent 6044d5425c
commit ec68911568

View File

@@ -2,6 +2,8 @@ plugins {
id 'java-library'
}
apply plugin: 'java' // adds 'test' task
sourceSets {
main {
java {
@@ -49,4 +51,9 @@ jar {
from ('resources', {
into "net/i2p/router/util/resources"
})
test {
exclude 'net/i2p/router/tunnel/pool/**'
}
}