Skip to content

Commit

Permalink
#108: added pom.xml.
Browse files Browse the repository at this point in the history
  • Loading branch information
romankh3 committed Jun 1, 2019
1 parent 25e3f3b commit 189018e
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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.github.romankh3</groupId>
<artifactId>image-comparison</artifactId>
<version>3.0.1</version>
<packaging>jar</packaging>

<name>Image Comparison</name>

<url>https://romankh3.github.io/image-comparison/</url>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<dependencies>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.26.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

0 comments on commit 189018e

Please sign in to comment.