<?xml version="1.0"?>
<project
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
	xmlns="http://maven.apache.org/POM/4.0.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<modelVersion>4.0.0</modelVersion>

	<!-- <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> 
		<version>9</version> </parent> -->

	<groupId>cn.bizvane.openapi</groupId>
	<artifactId>bizvane-java-sdk-openapi</artifactId>
	<name>openapi-client-sdk</name>
	<packaging>jar</packaging>
	<url>http://maven.apache.org</url>
	<version>1.0.0</version>
	<description>Bizvane Openapi Client SDK</description>

	<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>

	<scm>
		<url>http://bizvan.cn</url>
		<connection>scm:git:https://github.com/wangzeyan999/openapi.git</connection>
		<developerConnection>scm:git:https://github.com/wangzeyan999/openapi.git</developerConnection>
	</scm>

	<developers>
		<developer>
			<name>wang.zeyan</name>
			<email>wangzeyan@bizvane.com</email>
			<organization>Bizvane</organization>
			<organizationUrl>http://www.bizvane.com</organizationUrl>
		</developer>
	</developers>

	<distributionManagement>
		<snapshotRepository> <id>snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> 
			</snapshotRepository>
		<!-- <snapshotRepository>
			<id>julu-snapshots</id>
			<url>http://repo.bizvane.com/nexus/content/repositories/julu-snapshots/</url>
		</snapshotRepository> -->
		<repository>
			<id>ossrh</id>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
		</repository>
	</distributionManagement>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
		<java.version>1.8</java.version>
		<maven.compiler.source>${java.version}</maven.compiler.source>
		<maven.compiler.target>${java.version}</maven.compiler.target>
		<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
		<fastjson.version>1.2.56</fastjson.version>
		<commons-codec.version>1.12</commons-codec.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>1.7.26</version>
		</dependency>

		<dependency>
			<groupId>com.alibaba</groupId>
			<artifactId>fastjson</artifactId>
			<version>${fastjson.version}</version>
		</dependency>

		<dependency>
			<groupId>commons-codec</groupId>
			<artifactId>commons-codec</artifactId>
			<version>${commons-codec.version}</version>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>3.1.0</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar-no-fork</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<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>
						<!-- <configuration>
							<passphraseServerId>gpg.passphrase</passphraseServerId>
						</configuration> -->
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>
