Build: Add i2pcontrol and imagegen to gradle build

This commit is contained in:
zzz
2021-01-04 08:34:09 -05:00
parent e461004ed9
commit d42ef2223d
3 changed files with 49 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
plugins {
id 'war'
}
sourceSets {
main {
java {
srcDir 'java'
}
}
}
dependencies {
providedCompile project(':router')
providedCompile project(':apps:jetty')
providedCompile files('../../installer/lib/wrapper/all/wrapper.jar')
}
war {
archiveName 'jsonrpc.war'
webXml = file('web.xml')
}