added parent pom file for examples project

This commit is contained in:
Mohammad Derakhshani 2018-01-18 10:38:00 -08:00
Родитель 7699880392
Коммит bfeaef47bf
2 изменённых файлов: 39 добавлений и 10 удалений

Просмотреть файл

@ -2,14 +2,17 @@
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>
<groupId>com.microsoft.azure</groupId>
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>documentdb-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>documentdb-examples</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>documentdb-examples</name>
<packaging>jar</packaging>
<url>https://docs.microsoft.com/en-us/azure/cosmos-db/sql-api-sdk-java</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<slf4j.version>1.7.6</slf4j.version>
@ -32,7 +35,6 @@
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
@ -45,11 +47,6 @@
<artifactId>azure-documentdb</artifactId>
<version>1.15.0</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.0</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>

32
pom.xml Normal file
Просмотреть файл

@ -0,0 +1,32 @@
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure</groupId>
<artifactId>documentdb-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Azure Cosmons DB Document API</name>
<url>https://docs.microsoft.com/en-us/azure/cosmos-db/sql-api-sdk-java</url>
<modules>
<module>documentdb-examples</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<includes>
<include>**/*Test*.java</include>
<include>**/*Samples*.java</include>
<include>**/*Sample*.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</project>