Skip to content

Commit f7d3784

Browse files
committed
Update distributed jetty version
1 parent 15b22f5 commit f7d3784

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0"?>
2+
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
3+
4+
<Configure id="Server" class="org.eclipse.jetty.server.Server">
5+
<Call class="org.eclipse.jetty.webapp.WebAppContext" name="addSystemClasses">
6+
<Arg><Ref refid="Server"/></Arg>
7+
<Arg>
8+
<Call class="org.eclipse.jetty.util.StringUtil" name="csvSplit">
9+
<Arg><Property name="jetty.webapp.addSystemClasses"/></Arg>
10+
</Call>
11+
</Arg>
12+
</Call>
13+
14+
<Call class="org.eclipse.jetty.webapp.WebAppContext" name="addServerClasses">
15+
<Arg><Ref refid="Server"/></Arg>
16+
<Arg>
17+
<Call class="org.eclipse.jetty.util.StringUtil" name="csvSplit">
18+
<Arg><Property name="jetty.webapp.addServerClasses"/></Arg>
19+
</Call>
20+
</Arg>
21+
</Call>
22+
23+
</Configure>

project/Distributor.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ object Distributor extends BuildExtra {
121121
}
122122

123123

124-
val jetty = Dependency("jetty", "9.3.15.v20161220", "http://central.maven.org/maven2/org/eclipse/jetty/jetty-distribution/9.3.15.v20161220/jetty-distribution-9.3.15.v20161220.zip")
125-
.extractAsZip { raw"^\Qjetty-distribution-9.3.15.v20161220\E/".r.replaceFirstIn(_, "") }
124+
val jetty = Dependency("jetty", "9.4.7.v20170914", "http://central.maven.org/maven2/org/eclipse/jetty/jetty-distribution/9.4.7.v20170914/jetty-distribution-9.4.7.v20170914.zip")
125+
.extractAsZip { raw"^\Qjetty-distribution-9.4.7.v20170914\E/".r.replaceFirstIn(_, "") }
126126
.to { _ / "distrib-dependencies" / "common" / "jetty" }
127127

128128
object tools {

0 commit comments

Comments
 (0)