<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/xsd/maven-4.0.0.xsd">

	<modelVersion>4.0.0</modelVersion>
	<artifactId>jans-orm-filter</artifactId>
	<packaging>jar</packaging>
	<name>jans-orm-filter</name>

	<parent>
		<groupId>io.jans</groupId>
		<artifactId>jans-orm-parent</artifactId>
		<version>2.1.0</version>
	</parent>

    <build>
        <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <configuration>
<!--                        <argLine>@{argLine}</argLine> -->
                        <failIfNoTests>false</failIfNoTests>
                        <trimStackTrace>false</trimStackTrace>
                        <suiteXmlFiles>
                            <suiteXmlFile>target/test-classes/testng.xml</suiteXmlFile>
                        </suiteXmlFiles>
                    </configuration>
               </plugin>
        </plugins>
    </build>

	<dependencies>
		<dependency>
			<groupId>io.jans</groupId>
			<artifactId>jans-orm-util</artifactId>
		</dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <scope>test</scope>
        </dependency>
	</dependencies>

</project>