129 lines
4.1 KiB
XML
129 lines
4.1 KiB
XML
<?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">
|
|
<parent>
|
|
<groupId>com.honeycombis</groupId>
|
|
<artifactId>honeycom-visual</artifactId>
|
|
<version>5.4.0</version>
|
|
</parent>
|
|
|
|
<artifactId>honeycom-report-platform</artifactId>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<description>基于 GoView 的大屏设计系统</description>
|
|
<properties>
|
|
<goview.version>1.0.0</goview.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!--注册中心客户端-->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
</dependency>
|
|
|
|
<!--配置中心客户端-->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
</dependency>
|
|
|
|
<!-- goview 数据可视化-->
|
|
<dependency>
|
|
<groupId>io.springboot.plugin</groupId>
|
|
<artifactId>goview-spring-boot3-starter</artifactId>
|
|
<version>${goview.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.dameng</groupId>
|
|
<artifactId>DmDialect-for-hibernate5.3</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.dameng</groupId>
|
|
<artifactId>DmJdbcDriver18</artifactId>
|
|
</dependency>
|
|
|
|
<!-- druid 连接池 -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-3-starter</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 查询系统TOKEN -->
|
|
<dependency>
|
|
<groupId>com.honeycombis</groupId>
|
|
<artifactId>honeycom-upms-api</artifactId>
|
|
</dependency>
|
|
|
|
<!--undertow容器-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-undertow</artifactId>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>io.fabric8</groupId>
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
<configuration>
|
|
<skip>false</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
<excludes>
|
|
<exclude>**/*.woff</exclude>
|
|
<exclude>**/*.woff2</exclude>
|
|
<exclude>**/*.ttf</exclude>
|
|
<exclude>**/*.otf</exclude>
|
|
<exclude>**/*.eot</exclude>
|
|
</excludes>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>false</filtering>
|
|
<includes>
|
|
<include>**/*.woff</include>
|
|
<include>**/*.woff2</include>
|
|
<include>**/*.ttf</include>
|
|
<include>**/*.otf</include>
|
|
<include>**/*.eot</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
</project>
|