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

Commit fb5dafd

Browse files
committed
add jetty deps to k8s core module
1 parent a10beed commit fb5dafd

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
@@ -39,6 +39,64 @@
3939
<version>${project.version}</version>
4040
</dependency>
4141

42+
<!-- Jetty dependencies promoted to compile here so they are shaded
43+
and inlined into spark-core jar -->
44+
<dependency>
45+
<groupId>org.eclipse.jetty</groupId>
46+
<artifactId>jetty-plus</artifactId>
47+
<scope>compile</scope>
48+
</dependency>
49+
<dependency>
50+
<groupId>org.eclipse.jetty</groupId>
51+
<artifactId>jetty-security</artifactId>
52+
<scope>compile</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>org.eclipse.jetty</groupId>
56+
<artifactId>jetty-util</artifactId>
57+
<scope>compile</scope>
58+
</dependency>
59+
<dependency>
60+
<groupId>org.eclipse.jetty</groupId>
61+
<artifactId>jetty-server</artifactId>
62+
<scope>compile</scope>
63+
</dependency>
64+
<dependency>
65+
<groupId>org.eclipse.jetty</groupId>
66+
<artifactId>jetty-http</artifactId>
67+
<scope>compile</scope>
68+
</dependency>
69+
<dependency>
70+
<groupId>org.eclipse.jetty</groupId>
71+
<artifactId>jetty-continuation</artifactId>
72+
<scope>compile</scope>
73+
</dependency>
74+
<dependency>
75+
<groupId>org.eclipse.jetty</groupId>
76+
<artifactId>jetty-servlet</artifactId>
77+
<scope>compile</scope>
78+
</dependency>
79+
<dependency>
80+
<groupId>org.eclipse.jetty</groupId>
81+
<artifactId>jetty-proxy</artifactId>
82+
<scope>compile</scope>
83+
</dependency>
84+
<dependency>
85+
<groupId>org.eclipse.jetty</groupId>
86+
<artifactId>jetty-client</artifactId>
87+
<scope>compile</scope>
88+
</dependency>
89+
<dependency>
90+
<groupId>org.eclipse.jetty</groupId>
91+
<artifactId>jetty-servlets</artifactId>
92+
<scope>compile</scope>
93+
</dependency>
94+
<dependency>
95+
<groupId>javax.servlet</groupId>
96+
<artifactId>javax.servlet-api</artifactId>
97+
<version>${javaxservlet.version}</version>
98+
</dependency>
99+
42100
<dependency>
43101
<groupId>org.apache.spark</groupId>
44102
<artifactId>spark-core_${scala.binary.version}</artifactId>

0 commit comments

Comments
 (0)