<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.dc</groupId>
    <artifactId>dc-storage-broker</artifactId>
    <version>1.0.0</version>
  </parent>
  <artifactId>dc-storage-broker-service</artifactId>
  <name>dc-storage-broker-service</name>

  	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<maven.compiler.source>1.8</maven.compiler.source>
	</properties>

	<dependencies>
		<!--引入日志-->
		<dependency>
			<groupId>com.ovopark.dc</groupId>
			<artifactId>log-kafka-producer-sdk</artifactId>
		</dependency>

		<dependency>
			<groupId>com.ovopark.dc</groupId>
			<artifactId>dc-storage-broker-manage</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>

        <dependency>
            <groupId>com.ovopark.dc</groupId>
            <artifactId>dc-storage-broker-api</artifactId>
        </dependency>

        <dependency>
            <groupId>com.ovopark.dc</groupId>
            <artifactId>dc-storage-broker-before</artifactId>
        </dependency>
    </dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<version>${spring-boot.version}</version>
				<executions>
					<execution>
						<goals>
							<goal>repackage</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.12.4</version>
				<configuration>
					<skipTests>true</skipTests>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>