2013-11-11 09:56:49 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-03-11 09:00:01 -04:00
|
|
|
<!--
|
|
|
|
|
2014-05-09 08:22:51 -04:00
|
|
|
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
|
2014-03-11 09:00:01 -04:00
|
|
|
|
2014-05-09 08:22:51 -04:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2014-03-11 09:00:01 -04:00
|
|
|
|
2014-05-09 08:22:51 -04:00
|
|
|
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.
|
2014-03-11 09:00:01 -04:00
|
|
|
|
|
|
|
-->
|
2014-02-17 11:13:36 -05:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2014-05-09 08:22:51 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2014-03-11 09:00:01 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2014-02-17 08:20:31 -05:00
|
|
|
|
2014-04-02 04:53:41 -04:00
|
|
|
<artifactId>olingo-server-core</artifactId>
|
2014-03-11 09:00:01 -04:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
2014-02-17 08:20:31 -05:00
|
|
|
|
2014-03-11 09:00:01 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.olingo</groupId>
|
2014-04-02 04:53:41 -04:00
|
|
|
<artifactId>olingo-lib</artifactId>
|
2014-03-11 09:00:01 -04:00
|
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
|
|
<relativePath>..</relativePath>
|
|
|
|
</parent>
|
2014-02-17 08:20:31 -05:00
|
|
|
|
2014-03-11 09:00:01 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.olingo</groupId>
|
2014-04-02 04:53:41 -04:00
|
|
|
<artifactId>olingo-server-api</artifactId>
|
2014-03-11 09:00:01 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.olingo</groupId>
|
2014-04-02 04:53:41 -04:00
|
|
|
<artifactId>olingo-commons-core</artifactId>
|
2014-03-11 09:00:01 -04:00
|
|
|
<version>${project.version}</version>
|
2014-04-04 11:21:32 -04:00
|
|
|
</dependency>
|
2014-05-09 08:22:51 -04:00
|
|
|
<dependency>
|
2014-04-04 11:21:32 -04:00
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>${servlet.version}</version>
|
2014-03-11 09:00:01 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-runtime</artifactId>
|
|
|
|
</dependency>
|
2014-03-12 05:50:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
</dependency>
|
2014-05-09 10:56:44 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-03-12 05:50:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
2014-05-09 10:56:44 -04:00
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<scope>test</scope>
|
2014-03-12 05:50:29 -04:00
|
|
|
</dependency>
|
2014-03-11 09:00:01 -04:00
|
|
|
</dependencies>
|
2013-11-11 09:56:49 -05:00
|
|
|
|
2014-03-11 09:00:01 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>false</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-maven-plugin</artifactId>
|
|
|
|
<version>${antlr.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>antlr4</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<!--<arguments><argument>-atn</argument></arguments> -->
|
|
|
|
<listener>true</listener>
|
|
|
|
<visitor>true</visitor>
|
2014-05-09 08:22:51 -04:00
|
|
|
<!--maven antlr plugin has trouble with grammer import if the grammerfiles
|
|
|
|
are not directly inside src/main/antlr4, hence we have to set the libDirectory -->
|
2014-03-11 09:00:01 -04:00
|
|
|
<libDirectory>src/main/antlr4/org/apache/olingo/server/core/uri/antlr</libDirectory>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2013-11-11 09:56:49 -05:00
|
|
|
|
|
|
|
</project>
|