erp-fdv-test-driver-interface
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.gematik.erezept.remotefdv</groupId> <artifactId>erp-fdv-test-driver-interface</artifactId> <version>1.0.9</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> <artifactId>erp-fdv-test-driver-interface</artifactId> <groupId>de.gematik.erezept.remotefdv</groupId> <version>1.0.9</version> <packaging>pom</packaging> <name>Test Driver Interface Parent</name> <description>This module contains TDI Client and TDI Data</description> <modules> <module>test-driver-interface-client</module> <module>test-driver-interface-data</module> <module>test-driver-interface-server</module> <module>openapi</module> </modules> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <swagger-core-version>2.2.11</swagger-core-version> <erp.testsuite.version>0.12.0</erp.testsuite.version> <version.spotless>2.41.1</version.spotless> <central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version> <maven-source-plugin.version>3.3.1</maven-source-plugin.version> <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> <maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version> <jacoco-maven-plugin.version>0.8.11</jacoco-maven-plugin.version> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>RELEASE</version> <scope>test</scope> </dependency> <dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-jaxrs2</artifactId> <scope>compile</scope> <version>${swagger-core-version}</version> </dependency> </dependencies> <distributionManagement> <repository> <id>releases</id> <!--suppress UnresolvedMavenProperty --> <url>${releaseDeploymentRepository}</url> </repository> <snapshotRepository> <id>snapshots</id> <!--suppress UnresolvedMavenProperty --> <url>${snapshotDeploymentRepository}</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>${version.spotless}</version> <configuration> <java> <!-- make sure every file has the following copyright header. optionally, Spotless can set copyright years by digging through git history (see "license" section below) --> <includes> <include>**/src/main/java/**/*.java</include> <include>**/src/*test/java/**/*.java</include> </includes> <excludes> <exclude>**/generated/**</exclude> </excludes> <licenseHeader> <file>COPYRIGHT_HEADER</file> </licenseHeader> <googleJavaFormat> <version>1.18.1</version> <style>GOOGLE</style> <reflowLongStrings>true</reflowLongStrings> <formatJavadoc>true</formatJavadoc> </googleJavaFormat> <removeUnusedImports> <engine>google-java-format</engine> </removeUnusedImports> </java> </configuration> </plugin> </plugins> </build> <url>https://github.com/gematik/ref-erp-fdv-testdriver</url> <scm> <url>https://github.com/gematik/ref-erp-fdv-testdriver</url> <connection>scm:git:git://github.com/gematik/ref-erp-fdv-testdriver.git</connection> <developerConnection>scm:git:ssh://git@github.com:gematik/ref-erp-fdv-testdriver.git </developerConnection> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/gematik/ref-erp-fdv-testdriver/issues</url> </issueManagement> <organization> <name>gematik GmbH</name> <url>https://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> <profiles> <profile> <id>publish</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</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.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <doclint>none</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>