Jetty build.gradle

This commit is contained in:
str4d
2014-06-24 11:25:02 +00:00
parent 7ca735bfb2
commit 957eb1f7ab
2 changed files with 23 additions and 1 deletions

22
apps/jetty/build.gradle Normal file
View File

@ -0,0 +1,22 @@
archivesBaseName = 'jetty-i2p'
sourceSets {
main {
java {
srcDir 'java/src'
}
}
}
jettyVersion = '8.1.15.v20140411'
dependencies {
compile project(':core')
compile 'commons-logging:commons-logging:1.0.4'
compile 'org.eclipse.jetty.orbit:javax.servlet.jsp:2.2.0.v201112011158'
compile 'org.eclipse.jetty:jetty-http:' + jettyVersion
compile 'org.eclipse.jetty:jetty-io:' + jettyVersion
compile 'org.eclipse.jetty:jetty-security:' + jettyVersion
compile 'org.eclipse.jetty:jetty-server:' + jettyVersion
compile 'org.eclipse.jetty:jetty-util:' + jettyVersion
compile 'org.eclipse.jetty:jetty-xml:' + jettyVersion
}

View File

@ -1 +1 @@
include 'core', 'router', 'apps:ministreaming', 'apps:streaming'
include 'core', 'router', 'apps:ministreaming', 'apps:streaming', 'apps:jetty'