2013-11-11 09:56:49 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-02-17 08:20:31 -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-17 08:20:31 -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>
|
2013-11-11 09:56:49 -05:00
|
|
|
|
2014-09-11 03:45:50 -04:00
|
|
|
<artifactId>odata-lib</artifactId>
|
2014-02-17 08:20:31 -05:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
2013-11-11 09:56:49 -05:00
|
|
|
|
2014-02-17 08:20:31 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.olingo</groupId>
|
2014-09-11 03:45:50 -04:00
|
|
|
<artifactId>odata-parent</artifactId>
|
2015-09-21 08:46:33 -04:00
|
|
|
<version>4.1.0-SNAPSHOT</version>
|
2014-02-17 08:20:31 -05:00
|
|
|
<relativePath>..</relativePath>
|
|
|
|
</parent>
|
2013-11-11 09:56:49 -05:00
|
|
|
|
2014-02-17 08:20:31 -05:00
|
|
|
<modules>
|
2014-03-10 04:36:58 -04:00
|
|
|
<module>commons-api</module>
|
|
|
|
<module>commons-core</module>
|
2014-05-09 08:27:56 -04:00
|
|
|
<module>client-api</module>
|
|
|
|
<module>client-core</module>
|
|
|
|
<module>server-api</module>
|
|
|
|
<module>server-core</module>
|
2015-03-30 13:40:32 -04:00
|
|
|
<module>server-core-ext</module>
|
2014-05-13 07:36:50 -04:00
|
|
|
<module>server-tecsvc</module>
|
2014-05-13 08:49:26 -04:00
|
|
|
<module>server-test</module>
|
2014-02-17 08:20:31 -05:00
|
|
|
</modules>
|
2015-08-13 09:30:15 -04:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<cobertura.skip>true</cobertura.skip>
|
|
|
|
<!-- exclude proxy tests by default -->
|
|
|
|
<exclude.regex>.*proxy.*</exclude.regex>
|
|
|
|
</properties>
|
|
|
|
|
2015-09-14 04:03:22 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>${olingo.deploy.skip}</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2015-08-13 09:30:15 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>build.fast</id>
|
|
|
|
<properties>
|
|
|
|
<pmd.skip>true</pmd.skip>
|
|
|
|
<rat.skip>true</rat.skip>
|
|
|
|
<checkstyle.skip>true</checkstyle.skip>
|
|
|
|
<exclude.regex>.*(proxy|client).*</exclude.regex>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>build.quality</id>
|
|
|
|
<properties>
|
|
|
|
<cobertura.skip>false</cobertura.skip>
|
|
|
|
<!-- nothing excluded -->
|
|
|
|
<exclude.regex></exclude.regex>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2013-11-11 09:56:49 -05:00
|
|
|
</project>
|