<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-pos</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>business-pos-api</artifactId>
  <version>1.0.0</version>
  <name>business-pos-api</name>
  <description>pos API服务</description>
    <properties>
        <!-- boot cloud start -->
        <boot.cloud.version>1.0.0</boot.cloud.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.ovopark.boot</groupId>
            <artifactId>boot-core</artifactId>
            <version>${boot.cloud.version}</version>
            <type>jar</type>
        </dependency>
      <!-- business.base begin -->
	<dependency>
		<groupId>com.ovopark.boot.business.base</groupId>
		<artifactId>business-base-api</artifactId>
		<version>1.0.0</version>
		<type>jar</type>
	</dependency>
    <!-- business.base end -->
        
    </dependencies>

     <build>
        <finalName>business-pos-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>