<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>
	<parent>
		<groupId>com.tvd12</groupId>
		<artifactId>ezyfox</artifactId>
		<version>1.0.2</version>
	</parent>
	
	<groupId>org.youngmonkeys</groupId>
	<artifactId>ezyplatform-parent</artifactId>
	<version>0.0.1a</version>
	<packaging>pom</packaging>
	
	<name>ezyplatform-parent</name>
	<url>https://ezyplatform.com/</url>
	<description>Parent for which project base on easy going platform</description>

	<organization>
		<name>Young Monkeys</name>
		<url>https://youngmonkeys.org</url>
	</organization>

	<properties>
		<ezy.version>1.2.1</ezy.version>
		<ezy.http.version>0.1.9</ezy.http.version>
		<maven.assembly.plugin.version>3.3.0</maven.assembly.plugin.version>
	</properties>

	<licenses>
		<license>
			<name>Apache License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<developers>
		<developer>
			<name>Ta Van Dung</name>
			<email>itprono3@gmail.com</email>
			<organization>Young Monkeys</organization>
			<organizationUrl>https://youngmonkeys.org</organizationUrl>
		</developer>
		<developer>
			<name>Vu Luong Anh</name>
			<email>vubinhcht@gmail.com</email>
			<organization>Young Monkeys</organization>
			<organizationUrl>https://youngmonkeys.org</organizationUrl>
		</developer>
	</developers>

	<scm>
		<connection>scm:git:git@github.com:youngmonkeys/ezyplatform</connection>
		<developerConnection>scm:git:git@github.com:youngmonkeys/ezyplatform.git</developerConnection>
		<url>https://github.com/youngmonkeys/ezyplatform</url>
	</scm>

	<issueManagement>
		<system>Github</system>
		<url>https://github.com/youngmonkeys/ezyplatform/issues</url>
	</issueManagement>

	<ciManagement>
		<system>travis</system>
		<url>https://travis-ci.org/youngmonkeys/ezyplatform</url>
	</ciManagement>

	<distributionManagement>
		<site>
			<id>youngmonkeys</id>
			<url>https://www.youngmonkeys.org/</url>
		</site>
	</distributionManagement>

	<profiles>
		<profile>
			<id>export</id>
			<build>
				<resources>
					<resource>
						<directory>src/main/resources</directory>
						<excludes>
							<exclude>**/**</exclude>
						</excludes>
					</resource>
				</resources>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-assembly-plugin</artifactId>
						<version>${maven.assembly.plugin.version}</version>
						<configuration>
							<descriptors>
								<descriptor>assembly.xml</descriptor>
							</descriptors>
						</configuration>
						<executions>
							<execution>
								<id>make-assembly</id>
								<phase>install</phase>
								<goals>
									<goal>single</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>