<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.boot.business</groupId>
    <artifactId>business-oa</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <groupId>com.ovopark.boot.business.oa</groupId>
  <artifactId>business-oa-api</artifactId>
  <name>business-oa-api</name>
    <version>1.0.0</version>
  <description>oa API层</description>
  
  <!-- 项目属性 -->
  <properties>
   		<skipTests>true</skipTests>  
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <!-- boot cloud start-->
		<boot.cloud.version>1.0.0</boot.cloud.version>
		<!-- boot cloud end-->
  </properties>
   <dependencies>
    <!-- boot cloud begin -->
		<dependency>
			<groupId>com.ovopark.boot</groupId>
			<artifactId>boot-core</artifactId>
			<version>${boot.cloud.version}</version>
			<type>jar</type>
		</dependency>
    <!-- boot cloud end -->	
    </dependencies>
  
  
  <build>
        <finalName>business-oa-api</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <showWarnings>true</showWarnings>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-source-plugin</artifactId>
                <configuration>
                    <attach>true</attach>
                </configuration>
                <executions>
                    <execution>
                        <phase>compile</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>