<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>top.hmtools</groupId>
	<artifactId>hm-tools-mapper-plus</artifactId>
	<version>0.0.2</version>
	<name>hm-tools-mapper-plus</name>
	<description>通用mapper扩展工具</description>

	<url>http://www.hmtools.top</url>

	<licenses>
		<license>
			<name>The Apache License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
		</license>
	</licenses>

	<developers>
		<developer>
			<name>hm-tools</name>
			<email>hm-tools@hybomyth.com</email>
			<organization>（神奇码农）嗨啵</organization>
			<organizationUrl></organizationUrl>
		</developer>
	</developers>

	<properties>
		<hm.jdk.version>1.7</hm.jdk.version>
		<hm.encoding>UTF-8</hm.encoding>
		<!-- 文件拷贝时的编码 -->
		<project.build.sourceEncoding>${hm.encoding}</project.build.sourceEncoding>
		<project.reporting.outputEncoding>${hm.encoding}</project.reporting.outputEncoding>
		<!-- 编译时的编码 -->
		<maven.compiler.encoding>${hm.encoding}</maven.compiler.encoding>
	</properties>

	<scm>
		<connection>https://gitee.com/hm-tools/hm-tools-mapper-plus.git</connection>
		<url>https://gitee.com/hm-tools/hm-tools-mapper-plus.git</url>
	</scm>

	<dependencies>
		<!-- https://mvnrepository.com/artifact/tk.mybatis/mapper -->
		<dependency>
			<groupId>tk.mybatis</groupId>
			<artifactId>mapper</artifactId>
			<version>4.0.4</version>
		</dependency>

		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>1.7.21</version>
		</dependency>
		<dependency>
			<groupId>org.mybatis</groupId>
			<artifactId>mybatis</artifactId>
			<version>3.4.6</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<version>5.1.47</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>1.7.21</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.17</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.freemarker</groupId>
			<artifactId>freemarker-gae</artifactId>
			<version>2.3.28</version>
		</dependency>
	</dependencies>

	<!-- 配置远程发布到中央仓库，mvn deploy -->
	<distributionManagement>
		<snapshotRepository>
			<id>${snapshotRepositoryId}</id><!-- 必须同 setting.xml 中的 server配置项目中的 id 
				一致，否则会报401错误 -->
			<url>${snapshotRepositoryUrl}</url>
		</snapshotRepository>
		<repository>
			<id>${repositoryId}</id><!-- 必须同 setting.xml 中的 server配置项目中的 id 一致，否则会报401错误 -->
			<url>${repositoryUrl}</url>
		</repository>
	</distributionManagement>

	<build>
		<plugins>

			<!-- 配置 mvn test 所使用的插件，mvn test命令依赖此插件，如果此插件没被成功下载到本地仓库，使用mvn test 命令时会报错。可以手动配置此 
				插件改版本号，以方便从中央服务器下载可用的版本插件 ，默认的版本可能会因为网络原因没有正常被下载使用。 -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
					<testFailureIgnore>true</testFailureIgnore>
				</configuration>
			</plugin>

			<!-- 配置编译时所需要的JDK版本，默认是1.5版本 -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.5.1</version>
				<configuration>
					<source>${hm.jdk.version}</source>
					<target>${hm.jdk.version}</target>
					<encoding>${maven.compiler.encoding}</encoding>
				</configuration>
			</plugin>

			<!-- 配置发布本工程到私服的插件。执行方式：选择本工程==》鼠标右键==》run as ==》 maven build ==》deploy 
				-e ==》右下角的 run -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-deploy-plugin</artifactId>
				<version>2.7</version>
				<configuration>
					<skip />
				</configuration>
			</plugin>

			<!-- 要将源码放上去，需要加入这个插件 deploy -e 执行时，同时发布源代码到nexus私服 -->
			<plugin>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.1</version>
				<configuration>
					<attach>true</attach>
				</configuration>
				<executions>
					<execution>
						<phase>compile</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>

			<!-- 生成JavaDoc包（API文档） -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.7</version>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<encoding>${maven.compiler.encoding}</encoding>
							<additionalparam>-Xdoclint:none</additionalparam>
						</configuration>
					</execution>
				</executions>
			</plugin>

			<!--################################# 此段插件代码块禁止发布 gitee.com start############### -->
			<!-- maven gpg 自动签名插件，发布jar包到maven中央库，需要对文件进行gpg加密传输，加入此段代码后，先要在本机安装Kleopatra软件，使用Kleopatra先生成一对RSA密钥， 
				并发布密钥到服务器（gpg服务器）。 执行 verify -Dgpg.passphrase=thephrase 细节参见官方教程：http://maven.apache.org/plugins/maven-gpg-plugin/usage.html 
				，不能取消，否则在中央库校验失败 -->
			<!-- -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.6</version>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<!--################################# 此段插件代码块禁止发布 gitee.com end############### -->

			<!-- mybatis 逆向生成 -->
			<plugin>
				<groupId>org.mybatis.generator</groupId>
				<artifactId>mybatis-generator-maven-plugin</artifactId>
				<version>1.3.6</version>
				<configuration>
					<configurationFile>
						${basedir}/src/main/resources/generator/generatorConfig.xml
					</configurationFile>
					<overwrite>true</overwrite>
					<verbose>true</verbose>
				</configuration>
				<dependencies>
					<dependency>
						<groupId>mysql</groupId>
						<artifactId>mysql-connector-java</artifactId>
						<version>5.1.29</version>
					</dependency>
					<dependency>
						<groupId>tk.mybatis</groupId>
						<artifactId>mapper</artifactId>
						<version>4.0.0</version>
					</dependency>
				</dependencies>
			</plugin>
		</plugins>
	</build>

	<profiles>
		<profile>
			<id>release</id>
			<properties>
				<snapshotRepositoryId>ossrh</snapshotRepositoryId>
				<snapshotRepositoryUrl>https://oss.sonatype.org/content/repositories/snapshots/</snapshotRepositoryUrl>
				<repositoryId>ossrh</repositoryId>
				<repositoryUrl>https://oss.sonatype.org/service/local/staging/deploy/maven2/</repositoryUrl>
			</properties>
			<activation>
				<activeByDefault>true</activeByDefault>
			</activation>
		</profile>
		<profile>
			<id>local</id>
			<properties>
				<snapshotRepositoryId>snapshots</snapshotRepositoryId>
				<snapshotRepositoryUrl>http://192.168.0.54:8080/nexus/content/repositories/snapshots/</snapshotRepositoryUrl>
				<repositoryId>releases</repositoryId>
				<repositoryUrl>http://192.168.0.54:8080/nexus/content/repositories/releases/</repositoryUrl>
			</properties>
		</profile>
	</profiles>
















</project>