Skip to content
This repository was archived by the owner on Jan 9, 2020. It is now read-only.

Commit 7e8e8b4

Browse files
committed
Add jetty deps
1 parent 0612195 commit 7e8e8b4

File tree

1 file changed

+58
-0
lines changed
  • resource-managers/kubernetes/core

1 file changed

+58
-0
lines changed

resource-managers/kubernetes/core/pom.xml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,64 @@
4747
<scope>test</scope>
4848
</dependency>
4949

50+
<!-- Jetty dependencies promoted to compile here so they are shaded
51+
and inlined into spark-core jar -->
52+
<dependency>
53+
<groupId>org.eclipse.jetty</groupId>
54+
<artifactId>jetty-plus</artifactId>
55+
<scope>compile</scope>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.eclipse.jetty</groupId>
59+
<artifactId>jetty-security</artifactId>
60+
<scope>compile</scope>
61+
</dependency>
62+
<dependency>
63+
<groupId>org.eclipse.jetty</groupId>
64+
<artifactId>jetty-util</artifactId>
65+
<scope>compile</scope>
66+
</dependency>
67+
<dependency>
68+
<groupId>org.eclipse.jetty</groupId>
69+
<artifactId>jetty-server</artifactId>
70+
<scope>compile</scope>
71+
</dependency>
72+
<dependency>
73+
<groupId>org.eclipse.jetty</groupId>
74+
<artifactId>jetty-http</artifactId>
75+
<scope>compile</scope>
76+
</dependency>
77+
<dependency>
78+
<groupId>org.eclipse.jetty</groupId>
79+
<artifactId>jetty-continuation</artifactId>
80+
<scope>compile</scope>
81+
</dependency>
82+
<dependency>
83+
<groupId>org.eclipse.jetty</groupId>
84+
<artifactId>jetty-servlet</artifactId>
85+
<scope>compile</scope>
86+
</dependency>
87+
<dependency>
88+
<groupId>org.eclipse.jetty</groupId>
89+
<artifactId>jetty-proxy</artifactId>
90+
<scope>compile</scope>
91+
</dependency>
92+
<dependency>
93+
<groupId>org.eclipse.jetty</groupId>
94+
<artifactId>jetty-client</artifactId>
95+
<scope>compile</scope>
96+
</dependency>
97+
<dependency>
98+
<groupId>org.eclipse.jetty</groupId>
99+
<artifactId>jetty-servlets</artifactId>
100+
<scope>compile</scope>
101+
</dependency>
102+
<dependency>
103+
<groupId>javax.servlet</groupId>
104+
<artifactId>javax.servlet-api</artifactId>
105+
<version>${javaxservlet.version}</version>
106+
</dependency>
107+
50108
<dependency>
51109
<groupId>io.fabric8</groupId>
52110
<artifactId>kubernetes-client</artifactId>

0 commit comments

Comments
 (0)