tiger-testsuite-validator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.gematik.test</groupId> <artifactId>tiger-testsuite-validator</artifactId> <version>1.1.5</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.gematik.test</groupId> <artifactId>tiger-testsuite-validator</artifactId> <version>1.1.5</version> <packaging>jar</packaging> <name>Tiger-Testsuite-Validator</name> <description>Validator to check for valid testreports reported by Tiger test suites </description> <url>https://github.com/gematik/tiger-testsuite-validator</url> <scm> <url>https://github.com/gematik/tiger-testsuite-validator</url> <connection>scm:git:git://github.com/gematik/tiger-testsuite-validator.git</connection> <developerConnection>scm:git:ssh://git@github.com:gematik/tiger-testsuite-validator.git </developerConnection> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/gematik/tiger-testsuite-validator/issues</url> </issueManagement> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <cucumber.version>7.20.1</cucumber.version> <junit5.version>5.11.4</junit5.version> <serenity.version>4.2.15</serenity.version> <version.lombok>1.18.36</version.lombok> <version.maven>3.9.4</version.maven> <version.maven.failsafe>3.5.2</version.maven.failsafe> <version.maven.surefire>3.5.2</version.maven.surefire> <mycila.license-maven-plugin.version>4.6</mycila.license-maven-plugin.version> <spotless.google-java-format.version>1.18.1</spotless.google-java-format.version> <spotless-maven-plugin.version>2.43.0</spotless-maven-plugin.version> <version.jacoco-maven-plugin>0.8.12</version.jacoco-maven-plugin> <sonar.language>java</sonar.language> <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> </properties> <organization> <name>gematik GmbH</name> <url>http://www.gematik.de</url> </organization> <licenses> <license> <name>Apache License 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>gematik</name> <email>software-development@gematik.de</email> <url>https://gematik.github.io/</url> <organization>gematik GmbH</organization> <organizationUrl>https://www.gematik.de/</organizationUrl> </developer> </developers> <repositories> <repository> <id>jenkins-ci</id> <url>https://repo.jenkins-ci.org/releases/</url> </repository> <repository> <id>clojars</id> <url>https://clojars.org/repo/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${version.lombok}</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-core</artifactId> <version>${cucumber.version}</version> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-java</artifactId> <version>${cucumber.version}</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.18.0</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.5.15</version> </dependency> <dependency> <groupId>net.serenity-bdd</groupId> <artifactId>serenity-core</artifactId> <version>${serenity.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>net.serenity-bdd</groupId> <artifactId>serenity-cucumber</artifactId> <version>${serenity.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>net.serenity-bdd</groupId> <artifactId>serenity-junit5</artifactId> <version>${serenity.version}</version> <scope>test</scope> </dependency> <!-- JUNIT 5 DEPENDENCY--> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit5.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit5.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-suite-engine</artifactId> <version>1.11.4</version> <scope>test</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-junit-platform-engine</artifactId> <version>${cucumber.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.25.3</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>jacoco-maven-plugin</artifactId> <groupId>org.jacoco</groupId> <version>${version.jacoco-maven-plugin}</version> <executions> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <destFile>${project.build.directory}/coverage-reports/jacoco.exec </destFile> <propertyName>surefireJacocoAgent</propertyName> </configuration> </execution> <execution> <id>pre-integration-test</id> <goals> <goal>prepare-agent-integration</goal> </goals> <configuration> <destFile> ${project.build.directory}/coverage-reports/jacoco-it.exec </destFile> <propertyName>failsafeJacocoAgent</propertyName> </configuration> </execution> <execution> <id>post-unit-test</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <dataFile>${project.build.directory}/coverage-reports/jacoco.exec </dataFile> <outputDirectory>${project.reporting.outputDirectory}/jacoco </outputDirectory> </configuration> </execution> <execution> <id>post-integration-test</id> <goals> <goal>report-integration</goal> </goals> <configuration> <dataFile> ${project.build.directory}/coverage-reports/jacoco-it.exec </dataFile> <outputDirectory>${project.reporting.outputDirectory}/jacoco-it </outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>sonar-maven-plugin</artifactId> <groupId>org.sonarsource.scanner.maven</groupId> <version>3.11.0.3922</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>${mycila.license-maven-plugin.version}</version> <configuration> <licenseSets> <licenseSet> <header>doc/license.header.txt</header> <includes> <include>**/target/**</include> <include>**/src/**</include> <include>**/target/generated-*/**</include> </includes> <useDefaultExcludes>true</useDefaultExcludes> </licenseSet> </licenseSets> <mapping> <vue>XML_STYLE</vue> </mapping> </configuration> <executions> <execution> <id>license headers for sources</id> <goals> <goal>format</goal> </goals> <phase>generate-sources</phase> </execution> <execution> <id>license headers for test sources</id> <goals> <goal>format</goal> </goals> <phase>generate-test-sources</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <encoding>UTF-8</encoding> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <debug>true</debug> </configuration> </plugin> <plugin> <artifactId>jacoco-maven-plugin</artifactId> <groupId>org.jacoco</groupId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${version.maven.surefire}</version> <configuration> <argLine> ${surefireJacocoAgent} </argLine> <properties> <property> <name>listener</name> <value>org.sonar.java.jacoco.JUnitListener</value> </property> </properties> <excludedGroups>${excludedTestGroups}</excludedGroups> <excludes> <exclude>**/integrationtest/Test*.java</exclude> </excludes> <skip>${skipSurefire}</skip> </configuration> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>${version.maven.failsafe}</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <argLine>${failsafeJacocoAgent}</argLine> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>${spotless-maven-plugin.version}</version> <configuration> <formats> <format> <includes> <include>**/*.yml</include> </includes> <excludes> <exclude>**/target/**/*</exclude> </excludes> <trimTrailingWhitespace/> <endWithNewline/> <indent> <spaces>true</spaces> <spacesPerTab>2</spacesPerTab> </indent> </format> </formats> <java> <toggleOffOn/> <googleJavaFormat> <version>${spotless.google-java-format.version}</version> <style>GOOGLE</style> <reflowLongStrings>true</reflowLongStrings> </googleJavaFormat> </java> <groovy> <includes> <include>**/*.Jenkinsfile</include> </includes> <importOrder/> </groovy> <markdown> <includes> <include>**/*.md</include> </includes> <excludes> <exclude>**/target/**/*</exclude> </excludes> </markdown> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <mainClass>de.gematik.test.tiger.validator.MainZipsValidatorChecker</mainClass> </manifest> </archive> </configuration> </plugin> <!-- for quick and easy use via 'java -jar target/*exec.jar' passing in path to bundle zip and to report zip --> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>1.1.2.RELEASE</version> <configuration> <classifier>exec</classifier> </configuration> <executions> <execution> <id>spring-repackage</id> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <doclint>none</doclint> <sourcepath>src/main/java</sourcepath> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>external</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> <stagingProgressTimeoutMinutes>20</stagingProgressTimeoutMinutes> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>