<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>
	<parent>
		<groupId>tech.riemann</groupId>
		<artifactId>etp-supports</artifactId>
		<version>3.5.15</version>
	</parent>
	<artifactId>etp-spring-boot-starter</artifactId>
	<name>4.7 开发平台基础依赖 - 自动配置</name>
	<description>spring boot 自动配置启动器</description>
	<dependencies>
		<dependency>
			<groupId>tech.riemann</groupId>
			<artifactId>etp-common</artifactId>
		</dependency>
		<dependency>
			<groupId>tech.riemann</groupId>
			<artifactId>etp-supports-utils</artifactId>
		</dependency>
		<dependency>
			<groupId>tech.riemann</groupId>
			<artifactId>etp-supports-auth</artifactId>
		</dependency>
		<dependency>
			<groupId>tech.riemann</groupId>
			<artifactId>etp-supports-apm</artifactId>
		</dependency>
		<dependency>
			<groupId>tech.riemann</groupId>
			<artifactId>etp-supports-oidc</artifactId>
		</dependency>
		<dependency>
			<groupId>tech.riemann</groupId>
			<artifactId>etp-supports-web</artifactId>
		</dependency>
		<dependency>
			<groupId>tech.riemann</groupId>
			<artifactId>etp-trace</artifactId>
		</dependency>
		<dependency>
			<groupId>com.alibaba</groupId>
			<artifactId>druid</artifactId>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>com.google.crypto.tink</groupId>
			<artifactId>tink</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-configuration-processor</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.apache.tika</groupId>
			<artifactId>tika-core</artifactId>
			<version>3.2.3</version>
		</dependency>
		<dependency>
			<groupId>jakarta.servlet</groupId>
			<artifactId>jakarta.servlet-api</artifactId>
			<scope>provided</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<annotationProcessorPaths>
						<path>
							<groupId>org.projectlombok</groupId>
							<artifactId>lombok</artifactId>
						</path>
						<path>
							<groupId>org.springframework.boot</groupId>
							<artifactId>spring-boot-configuration-processor</artifactId>
						</path>
					</annotationProcessorPaths>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>