mirror of
https://github.com/i2p/i2p.i2p.git
synced 2026-03-29 11:59:57 +00:00
19 lines
290 B
Groovy
19 lines
290 B
Groovy
sourceSets {
|
|
main {
|
|
java {
|
|
srcDir 'java/src'
|
|
}
|
|
}
|
|
test {
|
|
java {
|
|
srcDir 'java/test/junit'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
compile project(':apps:ministreaming')
|
|
testCompile 'junit:junit:4.+'
|
|
}
|