apply plugin: 'java-library' sourceSets { main { java { srcDir 'java/src' } } test { java { srcDir 'java/test/junit' exclude { it.name.endsWith('IT.java') } } } } dependencies { api project(':core') api project(':apps:ministreaming') testImplementation project(path: ':apps:ministreaming', configuration: 'tests') }