<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>cn.tangjiabao</groupId>
  <artifactId>headb-springjdbc</artifactId>
  <version>0.18</version>
  <packaging>jar</packaging>
	<name>headb-springjdbc</name>
	<description>ORM which The highest development efficiency and Efficiency is the fastest </description>
	<url>https://git.oschina.net/vonchange/halodb.git</url>
	<licenses>
		<license>
			<name>The Apache Software License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
		</license>
	</licenses>
	<developers>
		<developer>
			<name>vonchange</name>
			<email>von_change@163.com</email>
		</developer>
	</developers>
	<scm>
		<connection>scm:https://git.oschina.net/vonchange/halodb.git</connection>
		<developerConnection>scm:https://git.oschina.net/vonchange/halodb.git</developerConnection>
		<url>https://git.oschina.net/vonchange/halodb.git</url>
	</scm>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
         <project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
         <maven.compiler.encoding>UTF-8</maven.compiler.encoding>  
	</properties>
 <!-- 	<repositories>
		<repository>
			<id>nexus</id>
			<url>http://121.40.154.36:8081/nexus/content/groups/public/</url>
		</repository>
	</repositories>
	<pluginRepositories>
          <pluginRepository>
            <id>nexus</id>
             <url>http://121.40.154.36:8081/nexus/content/groups/public/</url>
         </pluginRepository>
   </pluginRepositories>  -->
  <dependencies>
		<dependency>
			<groupId>com.vonchange</groupId>
			<artifactId>headb</artifactId>
			<version>0.18</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-jdbc</artifactId>
			<version>4.1.6.RELEASE</version>
		</dependency>
	</dependencies>
	<distributionManagement>
		<snapshotRepository>
			<id>oss</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
		</snapshotRepository>
		<repository>
			<id>oss</id>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
	</distributionManagement>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.10.3</version>
				<configuration>
					<aggregate>true</aggregate>
					<charset>UTF-8</charset>
					<encoding>UTF-8</encoding>
					<docencoding>UTF-8</docencoding>
					<tags>
						<tag>
							<name>date</name>
							<placement>a</placement>
							<head>日期：</head>
						</tag>
					</tags>
				</configuration>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<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>
</project>