<?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>com.ovopark.shopweb</groupId>
    <artifactId>ovopark-shopweb</artifactId>
    <version>1.0-SNAPSHOT</version>
  </parent>
  <groupId>com.ovopark.shopweb.api.face</groupId>
  <artifactId>shopweb-api-face</artifactId>
  <name>shopweb-api-face</name>

  <dependencies>
	  	<dependency>
		  <groupId>com.ovopark.shopweb.common</groupId>
		  <artifactId>shopweb-common</artifactId>
	  	</dependency>  
	  	<dependency>
		  <groupId>com.ovopark.shopweb.model</groupId>
		  <artifactId>shopweb-model</artifactId>
	  	</dependency>  	  	
  </dependencies>
  <build>
		<finalName>shopweb-api-face</finalName>  
		<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>
					<encoding>UTF-8</encoding>
					<!-- 在windows下面用;分隔，linux下面用:分隔。 -->
					<compilerArguments>
						<verbose />
						<bootclasspath>${java.home}/lib/rt.jar${path.separator}${java.home}/lib/jce.jar</bootclasspath>
					</compilerArguments>
					<skip>true</skip>
				</configuration>
			</plugin>
		</plugins>  
  </build>  
</project>
