<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.edas.ai</groupId>
		<artifactId>edas-ai-image</artifactId>
		<version>0.0.1-SNAPSHOT</version>
	</parent>
	<artifactId>edas-ai-image-consumer</artifactId>
	<version>1.0.0</version>
	<name>edas-ai-image-consumer</name>
	<description>图像识别消费者</description>

	<properties>
		<skipTests>true</skipTests>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<maven.compiler.source>1.8</maven.compiler.source>
		<!-- image-api start -->
		<edas.ai.image.version>1.0.0</edas.ai.image.version>
		<!-- image-api end -->
		<!-- boot cloud start -->
		<boot.cloud.version>1.0.1</boot.cloud.version>
		<!-- boot cloud end -->
		<swagger2.version>2.7.0</swagger2.version>
		<project.build.finalName>edas-ai-image-consumer</project.build.finalName>
	    <tag.version>0.0.1</tag.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>io.springfox</groupId>
			<artifactId>springfox-swagger2</artifactId>
			<version>${swagger2.version}</version>
		</dependency>

		<!-- <dependency> -->
		<!-- <groupId>io.springfox</groupId> -->
		<!-- <artifactId>springfox-swagger-ui</artifactId> -->
		<!-- <version>${swagger2.version}</version> -->
		<!-- </dependency> -->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<!-- 持久层 begin -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
		<!-- 鉴权 -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-security</artifactId>
		</dependency>
		<!-- image-api begin -->
		<dependency>
			<groupId>com.ovopark.boot.edas.ai</groupId>
			<artifactId>edas-ai-image-api</artifactId>
			<version>${edas.ai.image.version}</version>
			<type>jar</type>
		</dependency>
		<!-- image-api end -->
		<!-- boot cloud begin -->
		<dependency>
			<groupId>com.ovopark.boot</groupId>
			<artifactId>boot-core</artifactId>
			<version>${boot.cloud.version}</version>
			<type>jar</type>
		</dependency>
		<dependency>
			<groupId>com.ovopark.boot</groupId>
			<artifactId>boot-kit</artifactId>
			<version>${boot.cloud.version}</version>
			<type>jar</type>
		</dependency>
		<!-- boot cloud end -->
	</dependencies>


	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<executions>
					<execution>
						<goals>
							<goal>repackage</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
									<!-- dockerfile-maven-plugin -->
<!--             <plugin> -->
<!--                 <groupId>com.spotify</groupId> -->
<!--                 <artifactId>dockerfile-maven-plugin</artifactId> -->
<!--                 <version>1.4.13</version> -->
<!--                 <executions> -->
<!--                     <execution> -->
<!--                         <id>default</id> -->
<!--                         <goals> -->
<!--                             <goal>build</goal> -->
<!--                             <goal>push</goal> -->
<!--                         </goals> -->
<!--                     </execution> -->
<!--                 </executions> -->
<!--                 <configuration> -->
<!--               	   <imageTags> -->
<!--                         <imageTag>${project.version}</imageTag> -->
<!--                     </imageTags> -->
<!--                     <repository>harbor.ovopark.com/pro/${project.artifactId}</repository> -->
<!--                     <tag>${tag.version}</tag> -->
<!--                     <buildArgs> -->
<!--                         <JAR_FILE>${project.build.finalName}.jar</JAR_FILE> -->
<!--                     </buildArgs> -->
<!--                 </configuration> -->
<!--             </plugin> -->
			
		</plugins>
	</build>
	<developers>
		<developer>
			<id>remiel_mercy</id>
			<name>XueFei</name>
			<email>xuefei_fly@126.com</email>
			<roles>
				<role>architect</role>
			</roles>
		</developer>
	</developers>
</project>