<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>icu.easyj</groupId>
		<artifactId>easyj-build</artifactId>
		<version>1.1.2</version>
	</parent>
	<artifactId>easyj-tools-parent</artifactId>
	<version>1.1.4</version>
	<packaging>pom</packaging>
	<name>icu.easyj :: easyj-tools-parent</name>
	<description>EasyJ社区提供的一些工具，如：maven插件、注解处理器等等。</description>
	<url>https://easyj.icu</url>
	<scm>
		<connection>scm:git@github.com:easyj-projects/easyj-maven-plugin.git</connection>
		<developerConnection>scm:git@github.com:easyj-projects/easyj-maven-plugin.git</developerConnection>
		<url>https://github.com/easyj-projects/easyj-maven-plugin</url>
	</scm>
	<issueManagement>
		<system>github</system>
		<url>https://github.com/easyj-projects/easyj-maven-plugin/issues</url>
	</issueManagement>
	<properties>
		<jsr305.version>3.0.2</jsr305.version>
		<junit.version>5.8.2</junit.version>
		<plexus-utils.version>3.4.2</plexus-utils.version>
	</properties>
	<dependencies>
		<dependency>
			<groupId>org.junit.jupiter</groupId>
			<artifactId>junit-jupiter</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>com.google.code.findbugs</groupId>
			<artifactId>jsr305</artifactId>
			<version>${jsr305.version}</version>
			<scope>provided</scope>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<artifactId>maven-source-plugin</artifactId>
				<configuration>
					<attach>true</attach>
				</configuration>
			</plugin>
			<plugin>
				<groupId>icu.easyj.maven.plugins</groupId>
				<artifactId>easyj-maven-plugin</artifactId>
				<dependencies>
					<dependency>
						<groupId>org.codehaus.plexus</groupId>
						<artifactId>plexus-utils</artifactId>
						<version>${plexus-utils.version}</version>
					</dependency>
				</dependencies>
			</plugin>
		</plugins>
	</build>
</project>
