<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-face</artifactId>
		<version>0.0.1-SNAPSHOT</version>
	</parent>
	<artifactId>edas-ai-face-producer</artifactId>
	<version>1.0.0</version>
	<name>edas-ai-face-producer</name>
	<description>人脸|人体服务生产者</description>


	<properties>
		<skipTests>true</skipTests>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<maven.compiler.source>1.8</maven.compiler.source>
		<!-- edas.ai.face start -->
		<edas.ai.face.version>1.0.0</edas.ai.face.version>
		<!-- edas.ai.face end -->
		<!-- boot cloud start -->
		<boot.cloud.version>1.0.1</boot.cloud.version>
		<!-- boot cloud end -->
		<feign.version>10.1.0</feign.version>
		<baidu.version>4.8.0</baidu.version>
		<project.build.finalName>edas-ai-face-producer</project.build.finalName>
	    <tag.version>0.0.1</tag.version>
		
	</properties>




	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-jetty</artifactId>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
		<!-- 模板引擎 -->
		<dependency>
			<groupId>org.apache.velocity</groupId>
			<artifactId>velocity-engine-core</artifactId>
			<version>2.0</version>
		</dependency>

		<!-- edas-ai-face begin -->
		<dependency>
			<groupId>com.ovopark.boot.edas.ai</groupId>
			<artifactId>edas-ai-face-api</artifactId>
			<version>${edas.ai.face.version}</version>
			<type>jar</type>
		</dependency>
		<!-- edas-ai-face end -->

		<!-- boot cloud begin -->
		<dependency>
			<groupId>com.ovopark.boot</groupId>
			<artifactId>boot-kit</artifactId>
			<version>${boot.cloud.version}</version>
			<type>jar</type>
		</dependency>
		<!-- boot cloud end -->

		<dependency>
			<groupId>io.github.openfeign</groupId>
			<artifactId>feign-core</artifactId>
			<version>${feign.version}</version>
		</dependency>
		<dependency>
			<groupId>io.github.openfeign</groupId>
			<artifactId>feign-slf4j</artifactId>
			<version>${feign.version}</version>
		</dependency>
		<dependency>
			<groupId>io.github.openfeign</groupId>
			<artifactId>feign-hystrix</artifactId>
			<version>${feign.version}</version>
		</dependency>
		<dependency>
			<groupId>io.github.openfeign</groupId>
			<artifactId>feign-jackson</artifactId>
			<version>${feign.version}</version>
		</dependency>
		<dependency>
			<groupId>com.baidu.aip</groupId>
			<artifactId>java-sdk</artifactId>
			<version>${baidu.version}</version>
			<exclusions>
				<exclusion>
					<groupId>org.slf4j</groupId>
					<artifactId>slf4j-simple</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
	</dependencies>


	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<configuration>
					<maimClass>com.ovopark.boot.app.AiFaceProducerApp</maimClass>
				</configuration>
				<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>