forked from I2P_Developers/i2p.i2p
30 lines
497 B
Groovy
30 lines
497 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'war'
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDir 'java'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api project(':router')
|
|
api project(':apps:jetty')
|
|
api files('../../installer/lib/wrapper/all/wrapper.jar')
|
|
api fileTree("../jetty/apache-tomcat-${tomcatVersion}")
|
|
api fileTree("../jetty/jetty-distribution-${jettyVersion}")
|
|
}
|
|
|
|
war {
|
|
archiveBaseName.set('jsonrpc')
|
|
webXml = file('web.xml')
|
|
}
|
|
|
|
artifacts {
|
|
archives war
|
|
}
|