2014-10-22 05:54:16 -04:00
|
|
|
<?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.
|
|
|
|
|
|
|
|
-->
|
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>odata-samples</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.olingo</groupId>
|
|
|
|
<artifactId>odata-parent</artifactId>
|
2015-12-21 06:18:07 -05:00
|
|
|
<version>4.1.0</version>
|
2014-10-22 05:54:16 -04:00
|
|
|
<relativePath>..</relativePath>
|
|
|
|
</parent>
|
2015-09-25 08:26:50 -04:00
|
|
|
|
2014-10-22 05:54:16 -04:00
|
|
|
<modules>
|
|
|
|
<module>server</module>
|
|
|
|
</modules>
|
2015-06-10 00:26:45 -04:00
|
|
|
|
2015-09-10 08:39:14 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2015-06-10 00:26:45 -04:00
|
|
|
<profiles>
|
2015-09-25 08:26:50 -04:00
|
|
|
<profile>
|
|
|
|
<id>karaf</id>
|
|
|
|
<modules>
|
|
|
|
<module>osgi/server</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2015-06-10 00:26:45 -04:00
|
|
|
<profile>
|
|
|
|
<id>samples</id>
|
|
|
|
<modules>
|
|
|
|
<module>osgi/server</module>
|
2015-06-17 09:36:48 -04:00
|
|
|
<module>client</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2015-06-17 09:48:14 -04:00
|
|
|
<profile>
|
|
|
|
<id>tutorials</id>
|
|
|
|
<modules>
|
|
|
|
<module>tutorials</module>
|
2015-06-10 00:26:45 -04:00
|
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2014-10-22 05:54:16 -04:00
|
|
|
</project>
|