<?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>qa-parent</artifactId>
    <groupId>com.github.bordertech.common</groupId>
    <version>1.0.19</version>
    <relativePath>../pom.xml/pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.github.bordertech.mrz</groupId>
  <artifactId>mrz-java</artifactId>
  <name>MRZ Java Parser</name>
  <version>0.8</version>
  <description>Provides Java MRZ parser</description>
  <url>https://github.com/bordertech/mrz-java</url>
  <issueManagement>
    <system>GitHub</system>
    <url>https://github.com/bordertech/mrz-java/issues</url>
  </issueManagement>
  <ciManagement>
    <system>Github Actions</system>
    <url>https://github.com/BorderTech/mrz-java/actions</url>
  </ciManagement>
  <inceptionYear>2011</inceptionYear>
  <developers>
    <developer>
      <id>mvy</id>
      <name>Martin Vysny</name>
      <email>vysny@baka.sk</email>
      <roles>
        <role>developer</role>
      </roles>
      <timezone>1</timezone>
    </developer>
  </developers>
  <licenses>
    <license>
      <name>The GNU Lesser General Public License, version 2.1 (LGPL-2.1)</name>
      <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html</url>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:https://github.com/bordertech/mrz-java.git</connection>
    <developerConnection>scm:git:https://github.com/bordertech/mrz-java.git</developerConnection>
    <tag>mrz-java-0.8</tag>
    <url>https://github.com/bordertech/mrz-java</url>
  </scm>
  <organization>
    <name>Innovatrics</name>
    <url>http://www.innovatrics.com</url>
  </organization>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>3.3.0</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <shadedArtifactAttached>true</shadedArtifactAttached>
              <shadedClassifierName>jar-with-dependencies</shadedClassifierName>
              <filters>
                <filter>
                  <artifact>*:*</artifact>
                  <excludes>
                    <exclude>META-INF/*.SF</exclude>
                    <exclude>META-INF/*.DSA</exclude>
                    <exclude>META-INF/*.RSA</exclude>
                  </excludes>
                </filter>
              </filters>
              <transformers>
                <transformer>
                  <manifestEntries>
                    <Main-Class>com.innovatrics.mrz.Demo</Main-Class>
                  </manifestEntries>
                </transformer>
              </transformers>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.junit.vintage</groupId>
      <artifactId>junit-vintage-engine</artifactId>
      <version>5.8.2</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>junit-platform-engine</artifactId>
          <groupId>org.junit.platform</groupId>
        </exclusion>
        <exclusion>
          <artifactId>junit</artifactId>
          <groupId>junit</groupId>
        </exclusion>
        <exclusion>
          <artifactId>apiguardian-api</artifactId>
          <groupId>org.apiguardian</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
  <properties>
    <spotbugs.excludeFilterFile>${basedir}/spotbugs-excludes.xml</spotbugs.excludeFilterFile>
    <bt.fb-contrib.plugin.version>7.4.3.sb</bt.fb-contrib.plugin.version>
    <bt.qa.skip>false</bt.qa.skip>
  </properties>
</project>
