<?xml version="1.0" encoding="UTF-8"?>
<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>cloud.unione</groupId>
		<artifactId>unione</artifactId>
		<version>1.0.0</version>
	</parent>
	<artifactId>unione-web</artifactId>
	<name>unione-web</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>
		
		
		
		<!-- mysql-connector-java:配置依赖信息 -->
		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<version>${mysql.version}</version>
		</dependency>
		
		<dependency>
			<groupId>org.projectlombok</groupId>
			<artifactId>lombok</artifactId>
			<version>${lombok.version}</version>
			<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>
							<version>${lombok.version}</version>
						</path>
					</annotationProcessorPaths>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project>