<?xml version="1.0" encoding="UTF-8"?>
<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>

	<parent>
        <groupId>cn.bitfactory</groupId>
		<artifactId>bitfactory-sdk-java</artifactId>
		<version>1.9.0</version>
    </parent>

	<artifactId>bitfactory-sdk</artifactId>
	<packaging>jar</packaging>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<maven.compiler.source>8</maven.compiler.source>
		<maven.compiler.target>8</maven.compiler.target>
		<jackson-version>2.9.10</jackson-version>
	</properties>
	<!--开源协议...-->
	<licenses>
		<license>
			<name>The Apache Software License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<!--开发者信息-->
	<developers>
		<developer>
			<id>guoshijie</id>
			<name>guoshijie</name>
			<email>guoshijie@caict.ac.cn</email>
			<roles>
				<role>Project Manager</role>
				<role>Architect</role>
			</roles>
			<timezone>+8</timezone>
		</developer>
	</developers>
	<!--项目在github或其它托管平台的地址-->
	<scm>
		<connection>https://github.com/caict-4iot-dev/bitfactory-sdk-java.git</connection>
		<developerConnection>scm:git:ssh://git@github.com:caict-4iot-dev/bitfactory-sdk-java.git</developerConnection>
		<url>https://github.com/caict-4iot-dev/bitfactory-sdk-java</url>
	</scm>
	<dependencies>
		<dependency>
		    <groupId>com.google.protobuf</groupId>
		    <artifactId>protobuf-java</artifactId>
			<version>3.5.1</version>
		</dependency>
		<dependency>
			<groupId>com.googlecode.protobuf-java-format</groupId>
			<artifactId>protobuf-java-format</artifactId>
			<version>1.4</version>
		</dependency>
		<dependency>
			<groupId>com.alibaba</groupId>
			<artifactId>fastjson</artifactId>
			<version>1.2.32</version>
		</dependency>
		<dependency>
			<groupId>cn.bitfactory</groupId>
			<artifactId>bif-chain-encryption</artifactId>
			<version>1.9.3</version>
		</dependency>
		<dependency>
			<groupId>com.google.protobuf</groupId>
			<artifactId>protobuf-java</artifactId>
			<version>3.5.1</version>
			<scope>compile</scope>
		</dependency>
	</dependencies>

	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-release-plugin</artifactId>
					<version>2.5.3</version>
					<configuration>
						<autoVersionSubmodules>true</autoVersionSubmodules>
						<useReleaseProfile>false</useReleaseProfile>
						<releaseProfiles>release</releaseProfiles>
						<goals>deploy</goals>
					</configuration>
				</plugin>
<!--				                <plugin>-->
<!--				                    <groupId>org.sonatype.plugins</groupId>-->
<!--				                    <artifactId>nexus-staging-maven-plugin</artifactId>-->
<!--				                    <version>1.6.7</version>-->
<!--				                    <extensions>true</extensions>-->
<!--				                    <configuration>-->
<!--				                        <serverId>snapshot</serverId>-->
<!--				                        <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>-->
<!--				                        <autoReleaseAfterClose>true</autoReleaseAfterClose>-->
<!--				                    </configuration>-->
<!--				                </plugin>-->
				<!--生成源码插件-->
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-source-plugin</artifactId>
					<version>2.2.1</version>
					<executions>
						<execution>
							<id>attach-sources</id>
							<goals>
								<goal>jar-no-fork</goal>
							</goals>
						</execution>
					</executions>
				</plugin>

				<!--生成API文档插件-->
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-javadoc-plugin</artifactId>
					<version>2.9.1</version>
					<executions>
						<execution>
							<id>attach-javadocs</id>
							<goals>
								<goal>jar</goal>
							</goals>
							<!-- JDK8必须使用下面的配置 -->
							<configuration>
								<encoding>UTF-8</encoding>
								<charset>UTF-8</charset>
								<additionalparam>-Xdoclint:none</additionalparam>
							</configuration>
						</execution>
					</executions>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>
</project>
