Repository: incubator-brooklyn Updated Branches: refs/heads/master d7ac3ac11 -> c886d42dd
Fix warnings in eclipse Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/8e85bfe4 Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/8e85bfe4 Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/8e85bfe4 Branch: refs/heads/master Commit: 8e85bfe47b4d111e44e9d93886a1541d5ecdc15e Parents: d7ac3ac Author: Hadrian Zbarcea <[email protected]> Authored: Mon Jul 20 21:39:29 2015 -0400 Committer: Hadrian Zbarcea <[email protected]> Committed: Mon Jul 20 21:39:29 2015 -0400 ---------------------------------------------------------------------- examples/webapps/hello-world-sql/pom.xml | 5 +++++ examples/webapps/hello-world-webapp/pom.xml | 7 +++++++ examples/webapps/pom.xml | 11 +++++++++++ 3 files changed, 23 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/8e85bfe4/examples/webapps/hello-world-sql/pom.xml ---------------------------------------------------------------------- diff --git a/examples/webapps/hello-world-sql/pom.xml b/examples/webapps/hello-world-sql/pom.xml index f123072..615c988 100644 --- a/examples/webapps/hello-world-sql/pom.xml +++ b/examples/webapps/hello-world-sql/pom.xml @@ -31,6 +31,11 @@ </parent> <dependencies> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>javax.servlet-api</artifactId> + </dependency> + <!-- The riak artifact has a dependency on jackson 2.2.2, but actually requires 2.4.2 to run... --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/8e85bfe4/examples/webapps/hello-world-webapp/pom.xml ---------------------------------------------------------------------- diff --git a/examples/webapps/hello-world-webapp/pom.xml b/examples/webapps/hello-world-webapp/pom.xml index 2db4472..9857ca1 100644 --- a/examples/webapps/hello-world-webapp/pom.xml +++ b/examples/webapps/hello-world-webapp/pom.xml @@ -30,6 +30,13 @@ <relativePath>../pom.xml</relativePath> </parent> + <dependencies> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>javax.servlet-api</artifactId> + </dependency> + </dependencies> + <build> <finalName>brooklyn-example-hello-world-webapp</finalName> </build> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/8e85bfe4/examples/webapps/pom.xml ---------------------------------------------------------------------- diff --git a/examples/webapps/pom.xml b/examples/webapps/pom.xml index 8ba6e47..5894713 100644 --- a/examples/webapps/pom.xml +++ b/examples/webapps/pom.xml @@ -41,4 +41,15 @@ <module>hello-world-webapp</module> <module>hello-world-sql</module> </modules> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>javax.servlet-api</artifactId> + <version>3.1.0</version> + <scope>provided</scope> + </dependency> + </dependencies> + </dependencyManagement> </project>
