| <!-- |
| 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/maven-v4_0_0.xsd"> |
| |
| <parent> |
| <groupId>org.apache.hama</groupId> |
| <artifactId>hama-parent</artifactId> |
| <version>0.7.1-SNAPSHOT</version> |
| </parent> |
| |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>org.apache.hama</groupId> |
| <artifactId>hama-mesos</artifactId> |
| <name>mesos</name> |
| <packaging>jar</packaging> |
| |
| <properties> |
| <!-- Dependencies --> |
| <mesos.version>0.15.0</mesos.version> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.hama</groupId> |
| <artifactId>hama-core</artifactId> |
| <version>${project.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-core</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>commons-logging</groupId> |
| <artifactId>commons-logging</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.avro</groupId> |
| <artifactId>avro</artifactId> |
| <version>1.5.3</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.zookeeper</groupId> |
| <artifactId>zookeeper</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.mesos</groupId> |
| <artifactId>mesos</artifactId> |
| <version>${mesos.version}</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <finalName>hama-mesos-${project.version}</finalName> |
| <plugins> |
| <plugin> |
| <artifactId>maven-surefire-plugin</artifactId> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>copy-dependencies</id> |
| <phase>package</phase> |
| <goals> |
| <goal>copy-dependencies</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${project.parent.basedir}/lib</outputDirectory> |
| <overWriteReleases>false</overWriteReleases> |
| <overWriteSnapshots>true</overWriteSnapshots> |
| <excludeGroupIds>org.apache.hama</excludeGroupIds> |
| <artifactItems> |
| <artifactItem> |
| <groupId>org.apache.mesos</groupId> |
| <artifactId>mesos</artifactId> |
| <outputDirectory>${project.parent.basedir}/lib</outputDirectory> |
| </artifactItem> |
| </artifactItems> |
| <excludeTransitive>false</excludeTransitive> |
| <fileMode>755</fileMode> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| |
| </build> |
| |
| </project> |