Changeset 3f4daede
- Timestamp:
- Nov 3, 2017 6:23:49 PM (3 years ago)
- Branches:
- master
- Children:
- 3acb7a5
- Parents:
- 49d970c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/i2psnark/build.gradle
r49d970c r3f4daede 5 5 java { 6 6 srcDir 'java/src' 7 include 'org/klomp/snark/web/**'8 }9 }10 jar {11 java {12 srcDir 'java/src'13 exclude 'org/klomp/snark/standalone'14 exclude 'org/klomp/snark/web'15 7 } 16 8 } … … 18 10 19 11 dependencies { 20 jarCompile project(':core') 21 jarCompile project(':apps:ministreaming') 22 jarCompile project(':apps:systray') 23 providedCompile sourceSets.jar.output 12 compile project(':core') 13 compile project(':apps:systray') 24 14 providedCompile project(':apps:ministreaming') 25 15 providedCompile project(':apps:jetty') … … 27 17 28 18 task i2psnarkJar(type: Jar) { 29 from sourceSets.jar.output 19 from sourceSets.main.output 20 exclude 'org/klomp/snark/standalone/**' 21 exclude 'org/klomp/snark/web/**' 30 22 manifest { 31 23 attributes 'Main-Class': 'org.klomp.snark.Snark' … … 33 25 } 34 26 } 27 28 // TODO: standalone jar. This is rather involved! 35 29 36 30 artifacts {
Note: See TracChangeset
for help on using the changeset viewer.