<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>
	<artifactId>cattle</artifactId>
	<packaging>pom</packaging>
	<name>cattle</name>
	<url>https://gitee.com/yqpkj/cattle.git</url>
	<description>fast develop framework(cattle)</description>
	<parent>
		<groupId>com.yqpkj.fdf</groupId>
		<artifactId>cattle-parent</artifactId>
		<version>1.0.13</version>
	</parent>
	<licenses>
		<license>
			<name>MIT</name>
			<url>https://opensource.org/licenses/MIT</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<developers>
		<developer>
			<name>Yqpkj</name>
			<email>yqpkj@outlook.com</email>
			<organization>Yqpkj tech, Inc.</organization>
			<organizationUrl>https://www.yqpkj.com</organizationUrl>
		</developer>
	</developers>
	<scm>
		<connection>scm:git:https://gitee.com/yqpkj/cattle.git</connection>
		<developerConnection>scm:git:https://gitee.com/yqpkj/cattle.git</developerConnection>
		<url>https://gitee.com/yqpkj/cattle</url>
		<tag>HEAD</tag>
	</scm>

	<modules>
		<module>cattle-common</module>
		<module>cattle-core</module>
		<module>cattle-orm</module>
		<module>cattle-context</module>
		<module>cattle-web</module>
		<module>cattle-test</module>
	</modules>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<executions>
					<execution>
						<phase>package</phase>
						<goals>
							<goal>jar-no-fork</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>3.0.1</version>
				<executions>
					<execution>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<additionalJOption>-Xdoclint:none</additionalJOption>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

</project>