<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
<groupId>cn.stylefeng</groupId>
|
<artifactId>guns-vip</artifactId>
|
<version>1.0.0</version>
|
<relativePath>../pom.xml</relativePath>
|
</parent>
|
|
<artifactId>guns-vip-main</artifactId>
|
|
<packaging>jar</packaging>
|
|
<dependencies>
|
|
<dependency>
|
<groupId>log4j</groupId>
|
<artifactId>log4j</artifactId>
|
<version>1.2.17</version>
|
</dependency>
|
|
<!-- guns-vip基础框架 -->
|
<dependency>
|
<groupId>cn.stylefeng</groupId>
|
<artifactId>guns-sys</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
|
<!-- 工作流 -->
|
<dependency>
|
<groupId>cn.stylefeng</groupId>
|
<artifactId>guns-workflow</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
|
<!-- 多租户 -->
|
<dependency>
|
<groupId>cn.stylefeng</groupId>
|
<artifactId>guns-tenant</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
|
<!-- 多语言 -->
|
<dependency>
|
<groupId>cn.stylefeng</groupId>
|
<artifactId>guns-i18n</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
|
<!-- excel高级导出 -->
|
<dependency>
|
<groupId>cn.stylefeng</groupId>
|
<artifactId>guns-excel</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
|
<!-- 代码生成器 -->
|
<dependency>
|
<groupId>cn.stylefeng</groupId>
|
<artifactId>guns-generator</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
|
<!-- 数据源容器 -->
|
<dependency>
|
<groupId>cn.stylefeng</groupId>
|
<artifactId>guns-dbctn</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
|
<!-- oauth2认证 -->
|
<dependency>
|
<groupId>cn.stylefeng</groupId>
|
<artifactId>guns-oauth2</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
|
<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-websocket</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>com.kangaroohy</groupId>
|
<artifactId>milo-spring-boot-starter</artifactId>
|
<version>3.0.5</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-pool2</artifactId>
|
<version>2.12.0</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
|
<dependency>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
<version>33.0.0-jre</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<finalName>${project.artifactId}</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>io.fabric8</groupId>
|
<artifactId>docker-maven-plugin</artifactId>
|
<version>0.26.1</version>
|
<configuration>
|
<dockerHost>unix:///var/run/docker.sock</dockerHost>
|
<images>
|
<image>
|
<name>snexus.stylefeng.cn:6001/guns-api:${docker.img.version}</name>
|
<build>
|
<from>java:8</from>
|
<assembly>
|
<descriptor>docker-assembly.xml</descriptor>
|
</assembly>
|
<cmd>
|
<shell>java -jar -Xms512m -Xmx512m -Xss1024K -XX:MetaspaceSize=256m -XX:MaxMetaspaceSize=256m /maven/${project.artifactId}.jar</shell>
|
</cmd>
|
</build>
|
</image>
|
</images>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|