Repository: incubator-slider Updated Branches: refs/heads/develop c5cd55228 -> 440e81997
SLIDER-624 AM slow startup due to (needless) DTD resolution -triggers timeouts Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/440e8199 Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/440e8199 Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/440e8199 Branch: refs/heads/develop Commit: 440e819972d3fb9f0542bff52f6f49ab8852c768 Parents: c5cd552 Author: Steve Loughran <[email protected]> Authored: Fri Nov 7 15:45:19 2014 +0000 Committer: Steve Loughran <[email protected]> Committed: Fri Nov 7 15:45:19 2014 +0000 ---------------------------------------------------------------------- pom.xml | 10 +++++++++- slider-core/pom.xml | 6 ++++++ 2 files changed, 15 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/440e8199/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 48dc10c..4fdd7cd 100644 --- a/pom.xml +++ b/pom.xml @@ -167,7 +167,7 @@ <servlet-api.version>2.5</servlet-api.version> <jsr311-api.version>1.1.1</jsr311-api.version> <jaxb-api.version>2.2.7</jaxb-api.version> - + <jsp.version>2.1</jsp.version> <junit.version>4.11</junit.version> <log4j.version>1.2.17</log4j.version> <metrics.version>3.0.1</metrics.version> @@ -1151,6 +1151,12 @@ </dependency> <dependency> + <groupId>javax.servlet.jsp</groupId> + <artifactId>jsp-api</artifactId> + <version>${jsp.version}</version> + </dependency> + + <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-client</artifactId> <version>${jersey.version}</version> @@ -1248,11 +1254,13 @@ </exclusion> </exclusions> </dependency> + <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-util</artifactId> <version>${jetty.version}</version> </dependency> + <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-sslengine</artifactId> http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/440e8199/slider-core/pom.xml ---------------------------------------------------------------------- diff --git a/slider-core/pom.xml b/slider-core/pom.xml index 02cef1e..77b9273 100644 --- a/slider-core/pom.xml +++ b/slider-core/pom.xml @@ -444,6 +444,12 @@ </dependency> <dependency> + <groupId>javax.servlet.jsp</groupId> + <artifactId>jsp-api</artifactId> + <scope>runtime</scope> + </dependency> + + <dependency> <groupId>org.codehaus.jettison</groupId> <artifactId>jettison</artifactId> <version>1.1</version>
