Repository: incubator-slider Updated Branches: refs/heads/releases/slider-0.60 9641bd0c6 -> 0b265a3fb
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/0b265a3f Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/0b265a3f Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/0b265a3f Branch: refs/heads/releases/slider-0.60 Commit: 0b265a3fb811d376d4e17169af921eb13def1a51 Parents: 9641bd0 Author: Steve Loughran <[email protected]> Authored: Fri Nov 7 15:45:19 2014 +0000 Committer: Steve Loughran <[email protected]> Committed: Fri Nov 7 15:46:12 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/0b265a3f/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index bafcc0a..b380562 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/0b265a3f/slider-core/pom.xml ---------------------------------------------------------------------- diff --git a/slider-core/pom.xml b/slider-core/pom.xml index 4a6756c..964f564 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>
