2013-11-11 09:56:49 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-02-20 05:47:11 -05: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
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
-->
|
2013-11-11 09:56:49 -05:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2014-02-20 05:47:11 -05:00
|
|
|
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>
|
2014-02-17 11:13:36 -05:00
|
|
|
|
2014-04-02 04:53:41 -04:00
|
|
|
<artifactId>olingo-client-core</artifactId>
|
2014-02-20 05:47:11 -05:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
2014-02-17 11:13:36 -05:00
|
|
|
|
2014-02-20 05:47:11 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.olingo</groupId>
|
2014-04-02 04:53:41 -04:00
|
|
|
<artifactId>olingo-lib</artifactId>
|
2014-02-20 05:47:11 -05:00
|
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
|
|
<relativePath>..</relativePath>
|
|
|
|
</parent>
|
2014-02-17 11:13:36 -05:00
|
|
|
|
2014-02-20 05:47:11 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.olingo</groupId>
|
2014-04-02 04:53:41 -04:00
|
|
|
<artifactId>olingo-client-api</artifactId>
|
2014-02-20 05:47:11 -05: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-02-20 05:47:11 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-02-21 11:25:07 -05:00
|
|
|
|
2014-02-20 05:47:11 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
2014-03-14 05:11:02 -04:00
|
|
|
</dependency>
|
2014-03-19 12:58:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>xmlunit</groupId>
|
|
|
|
<artifactId>xmlunit</artifactId>
|
|
|
|
</dependency>
|
2014-03-14 05:11:02 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.olingo</groupId>
|
2014-04-02 04:53:41 -04:00
|
|
|
<artifactId>olingo-fit</artifactId>
|
2014-03-14 05:11:02 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-02-20 05:47:11 -05:00
|
|
|
</dependencies>
|
2014-03-14 05:11:02 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
<inherited>true</inherited>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.cargo</groupId>
|
|
|
|
<artifactId>cargo-maven2-plugin</artifactId>
|
|
|
|
<inherited>true</inherited>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>start-container</id>
|
|
|
|
<phase>pre-integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>start</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>stop-container</id>
|
|
|
|
<phase>post-integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>stop</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
|
2014-04-09 11:34:26 -04:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2014-03-14 05:11:02 -04:00
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
</testResource>
|
|
|
|
<testResource>
|
|
|
|
<directory>${basedir}/../../fit/src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</testResource>
|
|
|
|
</testResources>
|
|
|
|
</build>
|
2013-11-11 09:56:49 -05:00
|
|
|
</project>
|