<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="/POM/4.0.0"
xmlns:xsi="http:///2001/XMLSchema-instance"
xsi:schemaLocation="/POM/4.0.0 /xsd/maven-4.0.">
<modelVersion>4.0.0</modelVersion>
<groupId></groupId>
<artifactId>unirest-show</artifactId>
<version>0.0.1</version>
<name>unirest-show</name>
<url></url>
<packaging>jar</packaging>
<properties>
<>UTF-8</>
<>UTF-8</>
<></>
<>1.8</>
<skipTests>true</skipTests>
</properties>
<dependencies>
<!-- unirest -->
<dependency>
<groupId></groupId>
<artifactId>unirest-java</artifactId>
<version>1.4.9</version>
</dependency>
<dependency>
<groupId>.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.12.1</version>
</dependency>
<dependency>
<groupId></groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId></groupId>
<artifactId>lombok</artifactId>
<version>1.18.12</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>${}-${}</finalName>
<plugins>
<plugin>
<groupId></groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!-- Method 1: With dependencies running package -->
<plugin>
<groupId></groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<archive>
<manifest>
<mainClass></mainClass>
</manifest>
</archive>
<descriptorRefs>
<!--Add all external dependency JARs into the generated JAR package-->
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution><!-- Configure the actuator -->
<id>make-assembly</id>
<phase>package</phase><!-- Bind to package stage -->
<goals>
<goal>single</goal><!-- Run only once -->
</goals>
</execution>
</executions>
</plugin>
<!-- Add docker-maven plugin -->
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.40.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>build</goal>
<goal>push</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- Connect to a linux server with docker environment to compile image -->
<!--<dockerHost>http://192.168.182.10:2375</dockerHost>-->
<!-- Docker push mirror repository address -->
<pushRegistry>${}</pushRegistry>
<images>
<image>
<name>
${}/00fly/${}:${}</name>
<build>
<dockerFileDir>${}</dockerFileDir>
</build>
</image>
</images>
</configuration>
</plugin>
</plugins>
</build>
</project>