<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>
	<parent>
		<groupId>de.codeboje</groupId>
		<artifactId>request-logging-spring-boot-parent</artifactId>
		<version>0.0.1</version>
	</parent>

	<artifactId>request-logging-spring-boot-starter</artifactId>
	<name>Spring Boot Starter Request Logging - The Starter</name>
	
	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot</artifactId>
			<version>${spring-boot.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
			<version>${spring-boot.version}</version>
		</dependency>
		<dependency>
			<groupId>de.codeboje</groupId>
			<artifactId>request-logging-spring-boot-autoconfigure</artifactId>
			<version>0.0.1</version>
		</dependency>
		<dependency>
			<groupId>de.codeboje</groupId>
			<artifactId>request-logging</artifactId>
			<version>0.0.1</version>
		</dependency>
	</dependencies>
</project>