<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>com.geoway.zbph</groupId>
	<artifactId>geoway-metadata</artifactId>
	<version>2.5-rc</version>
	<packaging>jar</packaging>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<package.path>${project.basedir}/../OUT</package.path>
		<lombok.version>1.18.12</lombok.version>
		<skipTests>true</skipTests>
	</properties>
	
	<repositories>  
	    <repository>
	      <id>aliyun</id>  
	      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>  
	    </repository>  
	 </repositories> 

	<dependencies>
		<dependency>
			<groupId>com.geoway.zbph</groupId>
			<artifactId>geoway-base</artifactId>
			<version>${project.version}</version>
		</dependency>
	</dependencies>

	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-compiler-plugin</artifactId>
					<version>3.1</version>
					<configuration>
						<source>1.8</source>
						<target>1.8</target>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-source-plugin</artifactId>
					<version>3.2.1</version>
					<executions>
						<execution>
							<id>attach-sources</id>
							<phase>verify</phase>
							<goals>
								<goal>jar-no-fork</goal>
							</goals>
						</execution>
					</executions>
				</plugin>


			</plugins>
		</pluginManagement>
	</build>
	<distributionManagement>
		<repository>
			<id>releases</id>
			<name>Release Repository</name>
			<url>http://atlas.geoway.com.cn:8005/nexus/repository/maven-releases</url>
		</repository>
		<snapshotRepository>
			<id>snapshots</id>
			<url>http://atlas.geoway.com.cn:8005/nexus/repository/maven-snapshots/</url>
		</snapshotRepository>
	</distributionManagement>
</project>