Gradle build scripts for ministreaming and streaming

This commit is contained in:
str4d
2014-06-24 05:37:53 +00:00
parent 0919fa06f6
commit 7ca735bfb2
3 changed files with 38 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
archivesBaseName = 'mstreaming'
sourceSets {
main {
java {
srcDir 'java/src'
}
}
test {
java {
srcDir 'java/test/junit'
}
}
}
dependencies {
compile project(':core')
testCompile 'junit:junit:4.+'
}

View File

@@ -0,0 +1,18 @@
sourceSets {
main {
java {
srcDir 'java/src'
}
}
test {
java {
srcDir 'java/test/junit'
}
}
}
dependencies {
compile project(':core')
compile project(':apps:ministreaming')
testCompile 'junit:junit:4.+'
}

View File

@@ -1 +1 @@
include 'core', 'router'
include 'core', 'router', 'apps:ministreaming', 'apps:streaming'