2021-02-20 10:07:25 +08:00
|
|
|
|
<?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>
|
|
|
|
|
<artifactId>dataease-server</artifactId>
|
|
|
|
|
<groupId>io.dataease</groupId>
|
2022-06-02 13:30:30 +08:00
|
|
|
|
<version>1.11.1</version>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<artifactId>backend</artifactId>
|
2021-12-13 17:50:25 +08:00
|
|
|
|
|
2021-02-20 10:07:25 +08:00
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2021-02-25 12:28:55 +08:00
|
|
|
|
<shiro.version>1.7.1</shiro.version>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<graalvm.version>20.1.0</graalvm.version>
|
2021-02-26 11:25:14 +08:00
|
|
|
|
<jwt.version>3.12.1</jwt.version>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2021-11-19 18:44:58 +08:00
|
|
|
|
|
2022-01-25 14:35:07 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-11-19 18:44:58 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
2022-02-21 17:40:45 +08:00
|
|
|
|
<version>31.0.1-jre</version>
|
2021-11-19 18:44:58 +08:00
|
|
|
|
</dependency>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2022-04-13 13:39:29 +08:00
|
|
|
|
<!--<exclusions>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
</exclusion>
|
2022-04-13 13:39:29 +08:00
|
|
|
|
</exclusions>-->
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
2022-04-15 16:08:33 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
|
</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-aop</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2022-01-26 15:05:22 +08:00
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
|
<version>4.0.1</version>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-03-21 14:06:46 +08:00
|
|
|
|
<!--<dependency>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
|
<version>2.1.2</version>
|
2022-03-21 14:06:46 +08:00
|
|
|
|
</dependency>-->
|
2021-02-20 10:07:25 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
|
|
</dependency>
|
2021-02-25 12:28:55 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
</dependency>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
|
|
|
|
|
<!-- flyway -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.flywaydb</groupId>
|
|
|
|
|
<artifactId>flyway-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
2022-03-07 10:53:24 +08:00
|
|
|
|
<version>8.0.28</version>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
|
|
<artifactId>pagehelper</artifactId>
|
|
|
|
|
<version>5.0.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${shiro.version}</version>
|
|
|
|
|
</dependency>
|
2021-02-26 11:25:14 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
|
</dependency>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
2021-02-25 12:28:55 +08:00
|
|
|
|
<version>4.4</version>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-text</artifactId>
|
|
|
|
|
<version>1.8</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
</dependency>
|
2021-02-25 16:31:09 +08:00
|
|
|
|
<dependency>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
2022-05-25 12:49:35 +08:00
|
|
|
|
<version>1.2.83</version>
|
2021-02-25 16:31:09 +08:00
|
|
|
|
</dependency>
|
2021-02-26 11:25:14 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.auth0</groupId>
|
|
|
|
|
<artifactId>java-jwt</artifactId>
|
|
|
|
|
<version>${jwt.version}</version>
|
|
|
|
|
</dependency>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
|
<artifactId>curator-framework</artifactId>
|
|
|
|
|
<version>4.0.1</version>
|
2022-04-15 16:08:33 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
|
<artifactId>curator-recipes</artifactId>
|
|
|
|
|
<version>4.0.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- easyexcel -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
|
<version>2.1.7</version>
|
2022-04-15 16:08:33 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fit2cloud</groupId>
|
|
|
|
|
<artifactId>quartz-spring-boot-starter</artifactId>
|
|
|
|
|
<version>0.0.7</version>
|
2022-04-15 16:08:33 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-04-15 16:08:33 +08:00
|
|
|
|
|
2021-02-20 10:07:25 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-compress</artifactId>
|
2021-08-27 12:03:35 +08:00
|
|
|
|
<version>1.21</version>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--xpath不加这个依赖会报错-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jaxen</groupId>
|
|
|
|
|
<artifactId>jaxen</artifactId>
|
|
|
|
|
<version>1.2.0</version>
|
|
|
|
|
</dependency>
|
2021-03-08 18:19:57 +08:00
|
|
|
|
<!--开启 cache 缓存 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
|
|
|
|
</dependency>
|
2021-03-10 18:13:27 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
|
<artifactId>testng</artifactId>
|
|
|
|
|
<version>6.8</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2021-09-23 17:14:26 +08:00
|
|
|
|
<!-- ehcache 缓存 -->
|
2021-03-29 15:09:16 +08:00
|
|
|
|
<dependency>
|
2021-09-23 17:14:26 +08:00
|
|
|
|
<groupId>net.sf.ehcache</groupId>
|
|
|
|
|
<artifactId>ehcache</artifactId>
|
|
|
|
|
<version>2.9.1</version>
|
2022-04-15 16:08:33 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2021-03-15 18:21:37 +08:00
|
|
|
|
</dependency>
|
2021-09-24 15:30:09 +08:00
|
|
|
|
|
|
|
|
|
<!--由于暂时插件接口未注册到公司仓库,请先down下代码安装到本地仓库
|
|
|
|
|
https://github.com/dataease/dataease-plugins-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.dataease</groupId>
|
|
|
|
|
<artifactId>dataease-plugin-interface</artifactId>
|
2022-06-02 13:30:30 +08:00
|
|
|
|
<version>1.11.1</version>
|
2021-09-24 15:30:09 +08:00
|
|
|
|
</dependency>
|
2022-02-10 18:17:41 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.dataease</groupId>
|
|
|
|
|
<artifactId>dataease-plugin-view</artifactId>
|
2022-06-02 13:30:30 +08:00
|
|
|
|
<version>1.11.1</version>
|
2021-09-24 15:30:09 +08:00
|
|
|
|
</dependency>
|
2022-04-15 16:08:33 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.dataease</groupId>
|
|
|
|
|
<artifactId>dataease-plugin-datasource</artifactId>
|
2022-06-02 13:30:30 +08:00
|
|
|
|
<version>1.11.1</version>
|
2022-04-15 16:08:33 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-03-17 17:22:57 +08:00
|
|
|
|
|
2021-09-24 15:30:09 +08:00
|
|
|
|
<!-- kettle及数据源依赖 -->
|
2021-04-08 16:58:48 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>pentaho-kettle</groupId>
|
|
|
|
|
<artifactId>kettle-core</artifactId>
|
|
|
|
|
<version>8.3.0.18-1084</version>
|
2022-04-15 16:08:33 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2021-04-08 16:58:48 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>pentaho-kettle</groupId>
|
|
|
|
|
<artifactId>kettle-engine</artifactId>
|
|
|
|
|
<version>8.3.0.18-1084</version>
|
2022-04-15 16:08:33 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2021-04-08 16:58:48 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>pentaho</groupId>
|
|
|
|
|
<artifactId>metastore</artifactId>
|
|
|
|
|
<version>8.3.0.18-1084</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.pentaho.di.plugins</groupId>
|
|
|
|
|
<artifactId>pdi-engine-configuration-impl</artifactId>
|
|
|
|
|
<version>8.3.0.7-683</version>
|
|
|
|
|
</dependency>
|
2021-04-27 17:32:26 +08:00
|
|
|
|
<dependency>
|
2021-10-14 17:50:14 +08:00
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>druid</artifactId>
|
|
|
|
|
<version>1.2.8</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>jconsole</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>tools</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2021-09-24 15:30:09 +08:00
|
|
|
|
</dependency>
|
2021-11-09 16:39:21 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
|
<artifactId>selenium-java</artifactId>
|
|
|
|
|
</dependency>
|
2021-12-21 18:51:37 +08:00
|
|
|
|
|
2022-01-12 11:14:51 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
|
<version>1.14.3</version>
|
|
|
|
|
</dependency>
|
2022-02-18 17:59:19 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
|
<artifactId>json-path</artifactId>
|
|
|
|
|
<version>2.4.0</version>
|
2022-04-15 16:08:33 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2022-02-18 17:59:19 +08:00
|
|
|
|
</dependency>
|
2022-03-08 18:26:38 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-pool2</artifactId>
|
|
|
|
|
</dependency>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/*.properties</include>
|
|
|
|
|
<include>**/*.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
2021-10-14 18:20:27 +08:00
|
|
|
|
<!-- <includes>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
<include>**/*</include>
|
2021-10-14 18:20:27 +08:00
|
|
|
|
</includes> -->
|
2021-10-14 17:17:43 +08:00
|
|
|
|
<filtering>true</filtering>
|
2021-10-14 18:20:27 +08:00
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>static/**/*.woff</exclude>
|
|
|
|
|
<exclude>static/**/*.woff2</exclude>
|
|
|
|
|
<exclude>static/**/*.ttf</exclude>
|
2022-01-27 16:01:20 +08:00
|
|
|
|
<exclude>static/**/*.ico</exclude>
|
2021-10-14 18:20:27 +08:00
|
|
|
|
</excludes>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</resource>
|
2021-10-15 10:59:40 +08:00
|
|
|
|
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>static/**/*.woff</include>
|
|
|
|
|
<include>static/**/*.woff2</include>
|
|
|
|
|
<include>static/**/*.ttf</include>
|
2022-01-27 16:01:20 +08:00
|
|
|
|
<include>static/**/*.ico</include>
|
2021-10-15 10:59:40 +08:00
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</resources>
|
|
|
|
|
<plugins>
|
|
|
|
|
|
2021-10-14 17:17:43 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
<version>3.1.0</version>
|
|
|
|
|
</plugin>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<addResources>true</addResources>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
</exclude>
|
|
|
|
|
<exclude>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>2.12.4</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2021-08-03 14:14:35 +08:00
|
|
|
|
<!--<plugin>
|
2021-08-03 10:46:01 +08:00
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
<version>2.4.3</version>
|
2021-08-03 14:14:35 +08:00
|
|
|
|
</plugin>-->
|
2021-08-03 10:46:01 +08:00
|
|
|
|
|
2021-02-26 11:25:14 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<filesets>
|
|
|
|
|
<fileset>
|
|
|
|
|
<directory>src/main/resources/static</directory>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**</include>
|
|
|
|
|
</includes>
|
|
|
|
|
<followSymlinks>false</followSymlinks>
|
|
|
|
|
</fileset>
|
|
|
|
|
<fileset>
|
|
|
|
|
<directory>src/main/resources/templates</directory>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**</include>
|
|
|
|
|
</includes>
|
|
|
|
|
<followSymlinks>false</followSymlinks>
|
|
|
|
|
</fileset>
|
|
|
|
|
</filesets>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>1.8</source>
|
|
|
|
|
<target>1.8</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<!-- Overlay guacamole-common-js (zip) -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
<version>2.6</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.mybatis.generator</groupId>
|
|
|
|
|
<artifactId>mybatis-generator-maven-plugin</artifactId>
|
|
|
|
|
<version>1.3.7</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<verbose>true</verbose>
|
|
|
|
|
<overwrite>true</overwrite>
|
|
|
|
|
</configuration>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
2022-03-07 10:04:49 +08:00
|
|
|
|
<version>8.0.28</version>
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.itfsw</groupId>
|
|
|
|
|
<artifactId>mybatis-generator-plugin</artifactId>
|
|
|
|
|
<version>1.3.8</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
2021-03-11 11:41:29 +08:00
|
|
|
|
|
2022-03-27 19:06:37 +08:00
|
|
|
|
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2022-02-16 16:10:39 +08:00
|
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>whole</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<profiles.active>whole</profiles.active>
|
|
|
|
|
</properties>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
|
2022-04-17 15:05:01 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<?m2e execute onConfiguration?>
|
|
|
|
|
<id>main-class-placement</id>
|
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<target>
|
|
|
|
|
<move todir="src/main/resources/static">
|
|
|
|
|
<fileset dir="../frontend/dist">
|
|
|
|
|
<exclude name="*.html"/>
|
|
|
|
|
</fileset>
|
|
|
|
|
</move>
|
|
|
|
|
<move todir="src/main/resources/templates">
|
|
|
|
|
<fileset dir="../frontend/dist">
|
|
|
|
|
<include name="*.html"/>
|
|
|
|
|
</fileset>
|
|
|
|
|
</move>
|
|
|
|
|
|
|
|
|
|
<copy todir="src/main/resources/static/de-app">
|
|
|
|
|
<fileset dir="../mobile/dist">
|
|
|
|
|
<exclude name="*.html"/>
|
|
|
|
|
</fileset>
|
|
|
|
|
</copy>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<copy file="../mobile/dist/index.html" tofile="src/main/resources/templates/app.html" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>run</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2022-02-16 16:10:39 +08:00
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
|
|
<profile>
|
|
|
|
|
<id>stage</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<profiles.active>stage</profiles.active>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
2022-03-27 19:06:37 +08:00
|
|
|
|
|
2022-02-16 16:10:39 +08:00
|
|
|
|
|
2021-04-08 16:58:48 +08:00
|
|
|
|
<repositories>
|
2021-12-13 17:50:25 +08:00
|
|
|
|
<repository>
|
|
|
|
|
<id>pentaho-public</id>
|
|
|
|
|
<name>Pentaho Public</name>
|
2021-12-22 15:27:58 +08:00
|
|
|
|
<url>https://nexus.pentaho.org/content/groups/omni</url>
|
2021-12-13 17:50:25 +08:00
|
|
|
|
<releases>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
2021-04-08 16:58:48 +08:00
|
|
|
|
</repositories>
|
|
|
|
|
|
2021-02-20 10:07:25 +08:00
|
|
|
|
</project>
|