<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>com.ovopark.shopweb</groupId>
    <artifactId>ovopark-shopweb</artifactId>
    <version>1.0-SNAPSHOT</version>
  </parent>
  <groupId>com.ovopark.shopweb.api</groupId>  
  <artifactId>shopweb-api</artifactId>
  <name>shopweb-api</name>

  <dependencies>
		<dependency>
			<groupId>com.ovopark.shopweb.model</groupId>
			<artifactId>shopweb-model</artifactId>
		</dependency>
	  <dependency>
		  <groupId>com.github.pagehelper</groupId>
		  <artifactId>pagehelper</artifactId>
		  <version>5.1.6</version>
		  <scope>compile</scope>
	  </dependency>
  </dependencies>
  <build>
		<finalName>shopweb-api</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>