<?xml version="1.0"?>
<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>com.gitee.l0km</groupId>
		<artifactId>facelog</artifactId>
		<version>5.2.2</version>
	</parent>
	<artifactId>facelogservice-maven-plugin</artifactId>
	<name>maven plugin for run facelog service </name>
	<packaging>maven-plugin</packaging>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<dep.maven-api.version>3.2.5</dep.maven-api.version>
	</properties>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<!-- maven -->
		<dependency>
			<groupId>org.apache.maven</groupId>
			<artifactId>maven-plugin-api</artifactId>
			<version>${dep.maven-api.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.maven.plugin-tools</groupId>
			<artifactId>maven-plugin-annotations</artifactId>
			<version>3.2</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>${project.groupId}</groupId>
			<artifactId>facelog-service</artifactId>
			<version>${project.version}</version>
		</dependency>
	</dependencies>
	<build>
	    <pluginManagement>
	        <plugins>
	            <plugin>
	            	<groupId>org.apache.maven</groupId>
	                <artifactId>maven-plugin-plugin</artifactId>
	                <version>3.3</version>
	            </plugin>
	        </plugins>
	    </pluginManagement>
	</build>
</project>
