|
39 | 39 | <version>${project.version}</version>
|
40 | 40 | </dependency>
|
41 | 41 |
|
| 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 | + |
42 | 100 | <dependency>
|
43 | 101 | <groupId>org.apache.spark</groupId>
|
44 | 102 | <artifactId>spark-core_${scala.binary.version}</artifactId>
|
|
0 commit comments