mirror of https://github.com/longtai-cn/hippo4j
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
5.2 KiB
130 lines
5.2 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>cn.hippo4j</groupId>
|
|
<artifactId>hippo4j-threadpool-server</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<artifactId>hippo4j-threadpool-server-bootstrap</artifactId>
|
|
|
|
<properties>
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
|
<contextDir>${project.parent.parent.parent.basedir}/docker</contextDir>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.hippo4j</groupId>
|
|
<artifactId>hippo4j-threadpool-server-console</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<!-- Adapter start -->
|
|
<dependency>
|
|
<groupId>javax.xml.bind</groupId>
|
|
<artifactId>jaxb-api</artifactId>
|
|
<version>2.3.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
<artifactId>jaxb-impl</artifactId>
|
|
<version>2.3.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
<artifactId>jaxb-core</artifactId>
|
|
<version>2.3.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.activation</groupId>
|
|
<artifactId>activation</artifactId>
|
|
<version>1.1.1</version>
|
|
</dependency>
|
|
<!-- Adapter end -->
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>hippo4j-server</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-resources</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-resources</goal>
|
|
</goals>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
<outputDirectory>../../../docker/conf/</outputDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>conf</directory>
|
|
<includes>
|
|
<include>hippo4j-logback.xml</include>
|
|
<include>application.properties</include>
|
|
<include>application-h2.properties</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-build</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-resources</goal>
|
|
</goals>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
<outputDirectory>../../../docker/target</outputDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>target</directory>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>io.fabric8</groupId>
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
<version>0.42.1</version>
|
|
<configuration>
|
|
<images>
|
|
<image>
|
|
<name>hippo4j/${project.build.finalName}:${project.version}</name>
|
|
<alias>${project.build.finalName}</alias>
|
|
<build>
|
|
<contextDir>${contextDir}</contextDir>
|
|
</build>
|
|
</image>
|
|
<image>
|
|
<name>hippo4j/${project.build.finalName}:latest</name>
|
|
<alias>${project.build.finalName}</alias>
|
|
<build>
|
|
<contextDir>${contextDir}</contextDir>
|
|
</build>
|
|
</image>
|
|
</images>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|