2017-07-08 14:33:09 +00:00
|
|
|
<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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.mage</groupId>
|
|
|
|
<artifactId>mage-root</artifactId>
|
2019-01-16 16:59:45 +00:00
|
|
|
<version>1.4.33</version>
|
2017-07-08 14:33:09 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>mage-verify</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Mage Verify</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>mage</artifactId>
|
|
|
|
<version>${mage-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>mage-sets</artifactId>
|
|
|
|
<version>${mage-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2019-01-04 20:34:54 +00:00
|
|
|
<version>2.9.8</version>
|
2017-07-08 14:33:09 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
|
2018-05-11 18:22:02 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.reflections</groupId>
|
|
|
|
<artifactId>reflections</artifactId>
|
|
|
|
<version>0.9.11</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mage</groupId>
|
|
|
|
<artifactId>mage-client</artifactId>
|
2019-01-16 16:59:45 +00:00
|
|
|
<version>1.4.33</version>
|
2018-05-11 18:22:02 +00:00
|
|
|
</dependency>
|
|
|
|
|
2017-07-08 14:33:09 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>-Dfile.encoding=UTF-8</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2018-10-21 19:36:53 +00:00
|
|
|
<!-- <configuration>
|
2017-07-08 14:33:09 +00:00
|
|
|
<compilerArgument>-Xlint:unchecked</compilerArgument>
|
|
|
|
</configuration> -->
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
<finalName>mage-verify</finalName>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties/>
|
|
|
|
|
|
|
|
</project>
|