fix pom to include the dependency - junit (scope to be present while running tests)

This commit is contained in:
Sreeram Garlapati 2016-01-26 15:36:16 -08:00
Родитель 0531422841
Коммит e59628ece1
1 изменённых файлов: 9 добавлений и 1 удалений

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

@ -5,13 +5,14 @@
<groupId>com.microsoft.azure</groupId> <groupId>com.microsoft.azure</groupId>
<artifactId>azure-eventhubs</artifactId> <artifactId>azure-eventhubs</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>jar</packaging>
<name>azure-eventhubs</name> <name>azure-eventhubs</name>
<url>http://maven.apache.org</url> <url>http://maven.apache.org</url>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit-version>4.10</junit-version>
</properties> </properties>
<dependencies> <dependencies>
@ -27,5 +28,12 @@
<artifactId>bcpkix-jdk15on</artifactId> <artifactId>bcpkix-jdk15on</artifactId>
<version>1.47</version> <version>1.47</version>
</dependency> </dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
</project> </project>