Mercurial > hg > SpringPlayground
view spring-di-playground/pom.xml @ 18:8504317b9a09
Erweiterung um Sleuth, manuelle Konfiguration von Spring
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Thu, 17 Sep 2020 09:03:11 +0200 |
parents | 64e2ebad3366 |
children |
line wrap: on
line source
<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>de.comline</groupId> <artifactId>spring-di-playground</artifactId> <version>0.0.1-SNAPSHOT</version> <name>Spring DI container playground</name> <properties> <jdk.version.source>1.8</jdk.version.source> <jdk.version.target>1.8</jdk.version.target> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <verbose>true</verbose> <source>${jdk.version.source}</source> <target>${jdk.version.target}</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.1.14.RELEASE</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.6.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>2.2</version> <scope>test</scope> </dependency> </dependencies> </project>