blob: 3d0a93d0db66fe3b1ae2710ef80df646d9449a27 [file] [log] [blame]
<?xml version="1.0"?>
<!--
~
~ Licensed 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
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.atlas.odf</groupId>
<artifactId>odf</artifactId>
<version>1.2.0-SNAPSHOT</version>
</parent>
<artifactId>odf-store</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.atlas.odf</groupId>
<artifactId>odf-core</artifactId>
<version>1.2.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.atlas.odf</groupId>
<artifactId>odf-messaging</artifactId>
<version>1.2.0-SNAPSHOT</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>3.4.6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.atlas.odf</groupId>
<artifactId>odf-core</artifactId>
<version>1.2.0-SNAPSHOT</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19</version>
<configuration>
<systemPropertyVariables>
<odf.logspec>${odf.unittest.logspec}</odf.logspec>
<odf.zookeeper.connect>${testZookeepeConnectionString}</odf.zookeeper.connect>
<odf.build.project.name>${project.name}</odf.build.project.name>
</systemPropertyVariables>
<dependenciesToScan>
<dependency>org.apache.atlas.odf:odf-core</dependency>
</dependenciesToScan>
<includes>
<include>**/configuration/**/*.java</include>
<include>**/ZookeeperConfigurationStorageTest.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</project>