<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.open</groupId>
    <artifactId>open</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>open-threeparty-apigetway-api</artifactId>
  <version>1.0.0</version>
  <name>open-threeparty-apigetway-api</name>
  <description>三方平台api定义</description>
    <!-- 项目属性 -->
   <properties>
   		<skipTests>true</skipTests>  
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
			<servlet.version>3.0.1</servlet.version>
			<cloud.version>2.0.0</cloud.version>
    </properties>
    
    <dependencies>
		<dependency>
            <groupId>com.ovopark.cloud</groupId>
            <artifactId>cloud-core</artifactId>
            <version>${cloud.version}</version>
            <type>jar</type>
        </dependency>
        <dependency>
            <groupId>com.ovopark.cloud</groupId>
            <artifactId>cloud-api-sdk</artifactId>
            <version>${cloud.version}</version>
            <type>jar</type>
        </dependency>
        <dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>javax.servlet-api</artifactId>
			<version>${servlet.version}</version>
			<scope>provided</scope>
		</dependency>
   </dependencies>
	<build>
        <finalName>open-threeparty-apigetway-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>
                    <showWarnings>true</showWarnings>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.1</version>
                <configuration>
                    <attach>true</attach>
                </configuration>
                <executions>
                    <execution>
                        <phase>compile</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>