<?xml version="1.0" encoding="UTF-8"?>
<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">
  <parent>
    <artifactId>xmlunit-parent</artifactId>
    <groupId>org.xmlunit</groupId>
    <version>2.10.1</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.xmlunit</groupId>
  <artifactId>xmlunit-legacy</artifactId>
  <name>org.xmlunit:xmlunit-legacy</name>
  <description>XMLUnit 1.x Compatibility Layer</description>
  <url>https://www.xmlunit.org/</url>
  <licenses>
    <license>
      <name>The BSD 3-Clause License</name>
      <url>https://github.com/xmlunit/xmlunit/blob/main/xmlunit-legacy/LICENSE.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <includes>
            <include>**/test_*.java</include>
          </includes>
          <systemPropertyVariables>
            <user.dir>..</user.dir>
          </systemPropertyVariables>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <artifactSet>
            <excludes>
              <exclude>junit:junit</exclude>
            </excludes>
          </artifactSet>
          <shadedArtifactAttached>true</shadedArtifactAttached>
          <shadedClassifierName>sumo</shadedClassifierName>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>2.1.0</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>byte-buddy</artifactId>
          <groupId>net.bytebuddy</groupId>
        </exclusion>
        <exclusion>
          <artifactId>byte-buddy-agent</artifactId>
          <groupId>net.bytebuddy</groupId>
        </exclusion>
        <exclusion>
          <artifactId>objenesis</artifactId>
          <groupId>org.objenesis</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
  <properties>
    <automatic.module.name>org.custommonkey.xmlunit</automatic.module.name>
    <junit.version>3.8.1</junit.version>
  </properties>
</project>
