<?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>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.2.2.RELEASE</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
<groupId>com.highdatas</groupId>
|
<artifactId>mdm</artifactId>
|
<version>1.0.0</version>
|
<name>mdm</name>
|
<description>main datas Governance system</description>
|
<packaging>jar</packaging>
|
|
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<java.version>1.8</java.version>
|
<activiti.version>5.22.0</activiti.version>
|
<kettle-version>7.1.0.0-12</kettle-version>
|
</properties>
|
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
<exclusions>
|
<exclusion>
|
<groupId>org.junit.vintage</groupId>
|
<artifactId>junit-vintage-engine</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
|
<dependency>
|
<groupId>cglib</groupId>
|
<artifactId>cglib</artifactId>
|
<version>3.2.6</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
</dependency>
|
|
<!-- swagger -->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>2.5.0</version>
|
</dependency>
|
<!-- swagger-ui -->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>2.5.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.freemarker</groupId>
|
<artifactId>freemarker</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>2.2.0</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.62</version>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/commons-dbutils/commons-dbutils -->
|
<dependency>
|
<groupId>commons-dbutils</groupId>
|
<artifactId>commons-dbutils</artifactId>
|
<version>1.6</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>com.xuxueli</groupId>
|
<artifactId>xxl-rpc-core</artifactId>
|
<version>1.5.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-pool2</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>8.0.16</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>org.mybatis.spring.boot</groupId>
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
<version>1.3.2</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>commons-fileupload</groupId>
|
<artifactId>commons-fileupload</artifactId>
|
<version>1.3.1</version>
|
</dependency>
|
|
<!--acitiviti-->
|
<dependency>
|
<groupId>org.activiti</groupId>
|
<artifactId>activiti-spring-boot-starter-basic</artifactId>
|
<version>${activiti.version}</version>
|
<exclusions>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-security</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<dependency>
|
<groupId>org.activiti</groupId>
|
<artifactId>activiti-spring-boot-starter-actuator</artifactId>
|
<version>${activiti.version}</version>
|
<exclusions>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.activiti</groupId>
|
<artifactId>activiti-rest</artifactId>
|
<version>${activiti.version}</version>
|
<exclusions>
|
<exclusion>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-web</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-web</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-webmvc</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<dependency>
|
<groupId>org.activiti</groupId>
|
<artifactId>activiti-explorer</artifactId>
|
<version>${activiti.version}</version>
|
<exclusions>
|
<exclusion>
|
<groupId>com.vaadin</groupId>
|
<artifactId>vaadin</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.vaadin.addons</groupId>
|
<artifactId>dcharts-widget</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>activiti-simple-workflow</groupId>
|
<artifactId>org.activiti</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.activiti</groupId>
|
<artifactId>activiti-diagram-rest</artifactId>
|
<version>${activiti.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.activiti</groupId>
|
<artifactId>activiti-simple-workflow</artifactId>
|
<version>${activiti.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.activiti</groupId>
|
<artifactId>activiti-spring</artifactId>
|
<version>${activiti.version}</version>
|
</dependency>
|
|
|
<dependency>
|
<groupId>org.apache.xmlgraphics</groupId>
|
<artifactId>batik-codec</artifactId>
|
<version>1.7</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.xmlgraphics</groupId>
|
<artifactId>batik-css</artifactId>
|
<version>1.7</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.xmlgraphics</groupId>
|
<artifactId>batik-svg-dom</artifactId>
|
<version>1.7</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.xmlgraphics</groupId>
|
<artifactId>batik-svggen</artifactId>
|
<version>1.7</version>
|
</dependency>
|
|
<!--</dependency>-->
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-config</artifactId>
|
<version>4.1.3.RELEASE</version>
|
</dependency>
|
<dependency>
|
<groupId>com.belerweb</groupId>
|
<artifactId>pinyin4j</artifactId>
|
<version>2.5.0</version>
|
</dependency>
|
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid</artifactId>
|
<version>1.1.10</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid-spring-boot-starter</artifactId>
|
<version>1.1.9</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-vfs2</artifactId>
|
<version>2.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
<version>17.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>net.sourceforge.jtds</groupId>
|
<artifactId>jtds</artifactId>
|
<version>1.3.1</version>
|
</dependency>
|
|
|
<dependency>
|
<groupId>javax.servlet</groupId>
|
<artifactId>jstl</artifactId>
|
</dependency>
|
<!--jdbc-->
|
|
<dependency>
|
<groupId>monetdb</groupId>
|
<artifactId>monetdb-jdbc</artifactId>
|
<version>2.8</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.zenframework.z8.dependencies.commons</groupId>
|
<artifactId>ojdbc6</artifactId>
|
<version>2.0</version>
|
<classifier>sources</classifier>
|
<type>java-source</type>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
|
<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcprov-jdk15on</artifactId>
|
<version>1.60</version>
|
</dependency>
|
|
<!-- poi -->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
<version>3.16</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>3.16</version>
|
</dependency>
|
<dependency>
|
<groupId>wsdl4j</groupId>
|
<artifactId>wsdl4j</artifactId>
|
<version>1.6.3</version>
|
</dependency>
|
|
|
<dependency>
|
<groupId>com.microsoft.sqlserver</groupId>
|
<artifactId>sqljdbc4</artifactId>
|
<version>4.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.xerial</groupId>
|
<artifactId>sqlite-jdbc</artifactId>
|
<version>3.7.2</version>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/batik-gvt -->
|
<dependency>
|
<groupId>org.apache.xmlgraphics</groupId>
|
<artifactId>batik-gvt</artifactId>
|
<version>1.7</version>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>3.10</version>
|
</dependency>
|
|
|
<dependency>
|
<groupId>com.xuxueli</groupId>
|
<artifactId>xxl-job-core</artifactId>
|
<version>2.2.0</version>
|
<scope>system</scope>
|
<systemPath>${pom.basedir}/src/main/resources/lib/xxl-job-core-2.2.0-SNAPSHOT.jar</systemPath>
|
</dependency>
|
|
<dependency>
|
<groupId>com.datacvg</groupId>
|
<artifactId>common</artifactId>
|
<version>1.0</version>
|
<scope>system</scope>
|
<systemPath>${pom.basedir}/src/main/resources/lib/common-1.0.jar</systemPath>
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
<finalName>mdm-1.2.0</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<executable>true</executable>
|
<includeSystemScope>true</includeSystemScope>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<version>3.6.0</version>
|
<configuration>
|
<source>1.8</source>
|
<target>1.8</target>
|
<encoding>UTF-8</encoding>
|
<!--根据你把lib放的位置-->
|
<compilerArguments>
|
<extdirs>${project.basedir}/src/main/resources/lib</extdirs>
|
</compilerArguments>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-dependency-plugin</artifactId>
|
<version>2.10</version>
|
<executions>
|
<execution>
|
<id>copy-dependencies</id>
|
<phase>compile</phase>
|
<goals>
|
<goal>copy-dependencies</goal>
|
</goals>
|
<configuration>
|
<outputDirectory>${project.basedir}/src/main/resources/lib</outputDirectory>
|
<includeScope>system</includeScope>
|
</configuration>
|
</execution>
|
</executions>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
<version>2.22.1</version>
|
<configuration>
|
<skipTests>true</skipTests>
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|