[OLINGO-266] initial web application
Project: http://git-wip-us.apache.org/repos/asf/olingo-odata4/repo Commit: http://git-wip-us.apache.org/repos/asf/olingo-odata4/commit/e54aaac7 Tree: http://git-wip-us.apache.org/repos/asf/olingo-odata4/tree/e54aaac7 Diff: http://git-wip-us.apache.org/repos/asf/olingo-odata4/diff/e54aaac7 Branch: refs/heads/olingo-266-ref Commit: e54aaac7614a32843b0792a99abd36eff5f07da3 Parents: 66a8f99 Author: Stephan Klevenz <[email protected]> Authored: Fri May 2 12:13:55 2014 +0200 Committer: Stephan Klevenz <[email protected]> Committed: Fri May 2 12:13:55 2014 +0200 ---------------------------------------------------------------------- lib/ref/pom.xml | 55 +- .../org/apache/olingo/ref/EdmTechProvider.java | 2001 ++++++++++++++++++ .../olingo/ref/ReferenceScenarioServlet.java | 33 + lib/ref/src/main/webapp/WEB-INF/web.xml | 40 + lib/ref/src/main/webapp/index.html | 32 + .../server/core/servlet/ODataServlet.java | 6 +- 6 files changed, 2144 insertions(+), 23 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/e54aaac7/lib/ref/pom.xml ---------------------------------------------------------------------- diff --git a/lib/ref/pom.xml b/lib/ref/pom.xml index c928418..4b85d1f 100644 --- a/lib/ref/pom.xml +++ b/lib/ref/pom.xml @@ -1,30 +1,30 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>olingo-ref</artifactId> - <packaging>jar</packaging> + <packaging>war</packaging> <name>${project.artifactId}</name> <parent> @@ -34,6 +34,18 @@ <relativePath>..</relativePath> </parent> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + <dependencies> <dependency> <groupId>org.apache.olingo</groupId> @@ -42,9 +54,14 @@ </dependency> <dependency> <groupId>org.apache.olingo</groupId> - <artifactId>olingo-client-api</artifactId> + <artifactId>olingo-server-core</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + <version>${sl4j.version}</version> + </dependency> </dependencies> </project>
