<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>cloud.unione</groupId>
		<artifactId>unione</artifactId>
		<version>1.0.0</version>
	</parent>
	<artifactId>unione-codegen</artifactId>
	<name>unione-codegen</name>
	
	<dependencies>
		<dependency>
			<groupId>cloud.unione</groupId>
			<artifactId>unione-core</artifactId>
			<version>${project.version}</version>
		</dependency>
		
		<dependency>
			<groupId>cloud.unione</groupId>
			<artifactId>unione-beetsql</artifactId>
			<version>${project.version}</version>
		</dependency>
		
		<dependency>
			<groupId>org.projectlombok</groupId>
			<artifactId>lombok</artifactId>
			<version>${lombok.version}</version>
			<scope>provided</scope>
		</dependency>
	</dependencies>
	
	<build>
		<plugins>
			<!-- spring-boot-maven-plugin:应用打包插件 -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<annotationProcessorPaths>
						<path>
							<groupId>org.projectlombok</groupId>
							<artifactId>lombok</artifactId>
							<version>${lombok.version}</version>
						</path>
					</annotationProcessorPaths>
				</configuration>
			</plugin>
		</plugins>
	</build>
	
</project>