Changeset 367ab28
- Timestamp:
- Jun 26, 2014 3:26:32 AM (7 years ago)
- Branches:
- master
- Children:
- 2ef2032
- Parents:
- 8de0c0b
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
core/build.gradle
r8de0c0b r367ab28 5 5 java { 6 6 srcDir 'java/src' 7 } 8 resources { 9 srcDir 'java/src' 10 include 'gnu/getopt/*.properties' 7 11 } 8 12 } -
installer/build.gradle
r8de0c0b r367ab28 11 11 runtime files('lib/wrapper/all/wrapper.jar') 12 12 } 13 14 jar { 15 baseName 'utility' 16 from project(':core').sourceSets.main.output 17 include 'net/i2p/installer/**' 18 include 'net/i2p/util/FileUtil.class' 19 manifest { 20 attributes 'Main-Class': 'net.i2p.installer.Main' 21 } 22 } -
router/build.gradle
r8de0c0b r367ab28 16 16 testCompile project(path: ':core', configuration: 'tests') 17 17 } 18 19 jar { 20 manifest { 21 // so people with very old wrapper.config files will still work with Jetty 6 22 attributes 'Class-Path': 'jetty-i2p.jar jetty-java5-threadpool.jar jetty-rewrite-handler.jar jetty-sslengine.jar jetty-start.jar jetty-util.jar' 23 } 24 }
Note: See TracChangeset
for help on using the changeset viewer.