extend-mdc-spring-boot-autoconfigure
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.georgwittberger</groupId>
<artifactId>extend-mdc-spring-boot-autoconfigure</artifactId>
<version>1.0.0</version>
</dependency><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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.georgwittberger</groupId>
<artifactId>extend-mdc</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>extend-mdc-spring-boot-autoconfigure</artifactId>
<packaging>jar</packaging>
<name>ExtendMDC Spring Boot Auto-Configuration</name>
<description>A Spring Boot auto-configuration for the ExtendMDC aspect</description>
<url>https://github.com/georgwittberger/extend-mdc</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Georg Wittberger</name>
<email>georg.wittberger@gmail.com</email>
<url>https://github.com/georgwittberger</url>
<id>georgwittberger</id>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/georgwittberger/extend-mdc.git</connection>
<developerConnection>scm:git:https://github.com/georgwittberger/extend-mdc.git</developerConnection>
<url>https://github.com/georgwittberger/extend-mdc/tree/master</url>
<tag>v1.0.0</tag>
</scm>
<issueManagement>
<url>https://github.com/georgwittberger/extend-mdc/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<dependencies>
<dependency>
<groupId>io.github.georgwittberger</groupId>
<artifactId>extend-mdc-aspect</artifactId>
<version>${project.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>