Changeset aa3ac754
- Timestamp:
- Jun 25, 2014 2:50:24 AM (7 years ago)
- Branches:
- master
- Children:
- 8de0c0b
- Parents:
- f6108b5
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/i2ptunnel/build.gradle
rf6108b5 raa3ac754 18 18 providedCompile project(':apps:ministreaming') 19 19 providedCompile project(':apps:jetty') 20 testCompile 'junit:junit:4.+'21 20 } 22 21 -
apps/ministreaming/build.gradle
rf6108b5 raa3ac754 16 16 dependencies { 17 17 compile project(':core') 18 testCompile 'junit:junit:4.+'19 18 } 19 20 configurations { 21 tests 22 } 23 task testJar(type: Jar) { 24 baseName = 'mstreaming-test' 25 dependsOn classes 26 from sourceSets.test.output 27 } 28 artifacts { 29 tests testJar 30 } -
apps/sam/build.gradle
rf6108b5 raa3ac754 15 15 compile project(':core') 16 16 compile project(':apps:ministreaming') 17 testCompile 'junit:junit:4.+'18 17 } -
apps/streaming/build.gradle
rf6108b5 raa3ac754 15 15 compile project(':core') 16 16 compile project(':apps:ministreaming') 17 testCompile 'junit:junit:4.+'17 testCompile project(path: ':apps:ministreaming', configuration: 'tests') 18 18 } -
build.gradle
rf6108b5 raa3ac754 1 1 subprojects { 2 2 apply plugin: 'java' 3 4 repositories { 5 mavenCentral() 6 } 7 8 9 dependencies { 10 testCompile 'junit:junit:4.+' 11 } 3 12 4 13 sourceCompatibility = 1.5 … … 8 17 } 9 18 } 10 11 repositories {12 mavenCentral()13 }14 19 } -
core/build.gradle
rf6108b5 raa3ac754 14 14 } 15 15 16 dependencies {17 test Compile 'junit:junit:4.+'16 configurations { 17 tests 18 18 } 19 task testJar(type: Jar) { 20 baseName = 'i2p-test' 21 dependsOn classes 22 from sourceSets.test.output 23 } 24 artifacts { 25 tests testJar 26 } -
router/build.gradle
rf6108b5 raa3ac754 14 14 dependencies { 15 15 compile project(':core') 16 testCompile 'junit:junit:4.+'16 testCompile project(path: ':core', configuration: 'tests') 17 17 }
Note: See TracChangeset
for help on using the changeset viewer.