<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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>cc.ecore</groupId>
	<artifactId>spring-jfinal-parent</artifactId>
	<version>0.1.0</version>
	<packaging>pom</packaging>
	<name>${project.artifactId}</name>
	<url>https://git.oschina.net/Bitter/spring-jfinal</url>
	<description>parent pom.xml of spring-jfinal framework</description>

	<scm>
		<url>https://git.oschina.net/Bitter/spring-jfinal.git</url>
		<connection>scm:git:https://git.oschina.net/Bitter/spring-jfinal.git</connection>
		<developerConnection>scm:git:https://git.oschina.net/Bitter/spring-jfinal.git</developerConnection>
	</scm>

	<issueManagement>
		<system>git@osc issue</system>
		<url>https://git.oschina.net/Bitter/spring-jfinal/issues</url>
	</issueManagement>
	<licenses>
		<license>
			<name>The MIT License (MIT)</name>
			<url>http://mit-license.org/</url>
		</license>
	</licenses>
	<developers>
		<developer>
			<id>spring-jfinal</id>
			<name>Bitter</name>
			<email>Bitter2016@126.com</email>
			<url>https://git.oschina.net/Bitter/spring-jfinal</url>
		</developer>
	</developers>

	<repositories>
		<repository>
			<id>oss-snapshots</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
		</repository>
	</repositories>

	<distributionManagement>
		<snapshotRepository>
			<id>oss-snapshots</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
		<repository>
			<id>oss-staging</id>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
	</distributionManagement>

	<properties>
		<!-- compiler -->
		<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
		<maven.compiler.source>1.6</maven.compiler.source>
		<maven.compiler.target>1.6</maven.compiler.target>
		<maven.compiler.debug>true</maven.compiler.debug>
		<!-- test -->
		<maven.test.skip>true</maven.test.skip>
		<!-- javadoc -->
		<project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
		<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
		<!-- version of dependency -->
		<spring.version>3.2.0.RELEASE</spring.version>
		<aspectj.version>1.5.4</aspectj.version>
		<jfinal.version>1.4</jfinal.version>
		<javassist.version>3.13.0-GA</javassist.version>
		<jetty-server.version>8.1.8</jetty-server.version>
	</properties>
	<profiles>
		<profile>
			<id>oss</id>
			<build>
				<plugins>
					<!-- Source -->
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-source-plugin</artifactId>
						<version>2.2.1</version>
						<executions>
							<execution>
								<phase>package</phase>
								<goals>
									<goal>jar-no-fork</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
					<!-- Javadoc -->
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-javadoc-plugin</artifactId>
						<version>2.9.1</version>
						<executions>
							<execution>
								<phase>package</phase>
								<goals>
									<goal>jar</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
					<!-- GPG -->
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-gpg-plugin</artifactId>
						<version>1.5</version>
						<executions>
							<execution>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>
