diff options
| author | Paul-Christian Volkmer | 2023-03-14 11:09:06 +0100 |
|---|---|---|
| committer | GitHub | 2023-03-14 11:09:06 +0100 |
| commit | dfd0bcead45259e8fe317d54e7eeaa8d1f3b79fe (patch) | |
| tree | 9ec3dcc3f69b3510bc4f76996a36ef2e1079a53a /pom.xml | |
| parent | e89b31532b67cf2026f1b2b975176c950bfeaaa7 (diff) | |
| parent | c3e96d18fcd477519f09465ed27f55b1d8c64517 (diff) | |
Merge pull request #8 from CCC-MF/issue_7
Übernahme MTB mit Datum in Einzelempfehlung und Rebiopsie
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 166 |
1 files changed, 110 insertions, 56 deletions
@@ -1,64 +1,64 @@ <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> - <modelVersion>4.0.0</modelVersion> - <groupId>DNPMHelper</groupId> - <artifactId>DNPMHelper</artifactId> - <version>0.0.2</version> - <name>DNPMHelper</name> + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <groupId>DNPMHelper</groupId> + <artifactId>DNPMHelper</artifactId> + <version>0.0.2</version> + <name>DNPMHelper</name> - <properties> - <maven.compiler.source>11</maven.compiler.source> - <maven.compiler.target>11</maven.compiler.target> - <java.version>11</java.version> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <properties> + <maven.compiler.source>11</maven.compiler.source> + <maven.compiler.target>11</maven.compiler.target> + <java.version>11</java.version> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <spring-version>4.3.8.RELEASE</spring-version> - </properties> + <spring-version>4.3.8.RELEASE</spring-version> + </properties> - <dependencies> - <!-- This is the onkostar-api --> - <dependency> - <groupId>de.itc</groupId> - <artifactId>onkostar-parent</artifactId> - <version>2.11.1.1</version> - <scope>system</scope> - <systemPath>${project.basedir}/libs/onkostar-api-2.11.1.1.jar</systemPath> - </dependency> + <dependencies> + <!-- This is the onkostar-api --> + <dependency> + <groupId>de.itc</groupId> + <artifactId>onkostar-parent</artifactId> + <version>2.11.1.1</version> + <scope>system</scope> + <systemPath>${project.basedir}/libs/onkostar-api-2.11.1.1.jar</systemPath> + </dependency> - <!-- Hibernate --> - <dependency> - <groupId>org.hibernate</groupId> - <artifactId>hibernate-core</artifactId> - <version>4.3.11.Final</version> - <scope>provided</scope> - </dependency> + <!-- Hibernate --> + <dependency> + <groupId>org.hibernate</groupId> + <artifactId>hibernate-core</artifactId> + <version>4.3.11.Final</version> + <scope>provided</scope> + </dependency> - <!-- zusätzliche Erweiterungen. --> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-jdbc</artifactId> - <version>${spring-version}</version> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-webmvc</artifactId> - <version>${spring-version}</version> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>com.fasterxml.jackson.core</groupId> - <artifactId>jackson-databind</artifactId> - <version>2.12.2</version> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - <version>1.7.2</version> - <scope>provided</scope> - </dependency> + <!-- zusätzliche Erweiterungen. --> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-jdbc</artifactId> + <version>${spring-version}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-webmvc</artifactId> + <version>${spring-version}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.12.2</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>1.7.2</version> + <scope>provided</scope> + </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> @@ -77,6 +77,60 @@ <version>2.6</version> <scope>provided</scope> </dependency> - </dependencies> + + <!-- Test dependencies --> + <!-- Wird nur für Unit-tests benoetigt --> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + <version>5.9.2</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.assertj</groupId> + <artifactId>assertj-core</artifactId> + <version>3.24.2</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <version>4.11.0</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-junit-jupiter</artifactId> + <version>4.11.0</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>ca.uhn.hapi</groupId> + <artifactId>hapi-base</artifactId> + <version>2.2</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>ca.uhn.hapi</groupId> + <artifactId>hapi-structures-v26</artifactId> + <version>2.2</version> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.22.2</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-failsafe-plugin</artifactId> + <version>2.22.2</version> + </plugin> + </plugins> + </build> </project>
\ No newline at end of file |
