Files
i2p.i2p/apps/i2pcontrol/build.gradle
2024-01-28 12:09:10 +00:00

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
}