<?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.1</version>
	</parent>
	<artifactId>build</artifactId>
	<version>0.7.5-for-springboot3</version>
	<packaging>pom</packaging>
	<name>icu.easyj :: build</name>
	<description>用于构建EasyJ项目，定义各种基本信息</description>
	<url>https://easyj.icu</url>
	<inceptionYear>2021</inceptionYear>
	<organization>
		<name>EasyJ开源社区</name>
		<url>https://github.com/easyj-projects</url>
	</organization>
	<licenses>
		<license>
			<name>Apache License, Version 2.0</name>
			<url>https://www.apache.org/licenses/LICENSE-2.0</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<developers>
		<developer>
			<id>wangliang181230</id>
			<name>王良</name>
			<email>841369634@qq.com</email>
			<url>https://github.com/wangliang181230</url>
			<organization>浙江蕙康科技有限公司</organization>
			<organizationUrl>https://www.jyhk.com</organizationUrl>
			<roles>
				<role>Java架构师</role>
			</roles>
		</developer>
	</developers>
	<scm>
		<connection>scm:git@github.com:easyj-projects/easyj.git</connection>
		<developerConnection>scm:git@github.com:easyj-projects/easyj.git</developerConnection>
		<url>https://github.com/easyj-projects/easyj</url>
	</scm>
	<issueManagement>
		<system>github</system>
		<url>https://github.com/easyj-projects/easyj/issues</url>
	</issueManagement>
	<properties>
		<java.version>17</java.version>
		<maven.compiler.source>${java.version}</maven.compiler.source>
		<maven.compiler.target>${java.version}</maven.compiler.target>
		<maven.easyj.skipInstallAndDeploy>true</maven.easyj.skipInstallAndDeploy>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
		<spring-boot.version>3.0.0</spring-boot.version>
	</properties>
	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>icu.easyj.maven.plugins</groupId>
					<artifactId>easyj-maven-plugin</artifactId>
					<version>${easyj-maven-plugin.version}</version>
					<executions>
						<execution>
							<id>skip-install-deploy</id>
							<phase>initialize</phase>
							<goals>
								<goal>skip-install-deploy</goal>
							</goals>
						</execution>
					</executions>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>
</project>