mirror of
https://github.com/i2p/i2p.i2p.git
synced 2024-12-06 19:27:00 +01:00
27 lines
382 B
Groovy
27 lines
382 B
Groovy
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')
|
|
}
|
|
|
|
artifacts {
|
|
archives war
|
|
}
|