From 5b748d64f28b9ec19690251b922ad07359d0afc2 Mon Sep 17 00:00:00 2001 From: kimi <kimi42345@gmail.com> Date: 星期四, 28 五月 2020 10:43:48 +0800 Subject: [PATCH] 修复 json转换导致 视图分发失败 --- pom.xml | 1048 ++++++++++++++++++++++++++++++++++----------------------- 1 files changed, 629 insertions(+), 419 deletions(-) diff --git a/pom.xml b/pom.xml index 25f72da..d5dddf0 100644 --- a/pom.xml +++ b/pom.xml @@ -1,476 +1,686 @@ <?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> + 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> - <repositories> - <repository> - <id>pentaho</id> - <url>http://nexus.pentaho.org/content/groups/omni/</url> - </repository> - <!--<repository>--> - <!--<id>mylibid</id>--> - <!--<url>file://${pom.basedir}/lib</url>--> - <!--</repository>--> - </repositories> + <repositories> + <repository> + <id>pentaho</id> + <url>http://nexus.pentaho.org/content/groups/omni/</url> + </repository> + <!--<repository>--> + <!--<id>mylibid</id>--> + <!--<url>file://${pom.basedir}/lib</url>--> + <!--</repository>--> + </repositories> - <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> + <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> + <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-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>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>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-jdbc</artifactId> - </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-security</artifactId> - </dependency> + <dependency> + <groupId>cglib</groupId> + <artifactId>cglib</artifactId> + <version>3.2.6</version> + </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> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-jdbc</artifactId> + </dependency> + <!--<dependency>--> + <!--<groupId>org.springframework.boot</groupId>--> + <!--<artifactId>spring-boot-starter-security</artifactId>--> + <!--</dependency>--> - <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson --> - <dependency> - <groupId>com.alibaba</groupId> - <artifactId>fastjson</artifactId> - <version>1.2.62</version> - </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> - <dependency> - <groupId>com.xuxueli</groupId> - <artifactId>xxl-rpc-core</artifactId> - <version>1.5.0</version> - </dependency> - <dependency> - <groupId>mysql</groupId> - <artifactId>mysql-connector-java</artifactId> - <version>5.1.46</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.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>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> + <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> + <!--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-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> - <!--<exclusions> + <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> + <!--<exclusions> <exclusion> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> </exclusion> </exclusions>--> - </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> + <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> - <groupId>org.springframework.security</groupId> - <artifactId>spring-security-config</artifactId> - <version>4.1.3.RELEASE</version> + <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>--> + <!--<groupId>org.springframework.security</groupId>--> + <!--<artifactId>spring-security-config</artifactId>--> + <!--<version>4.1.3.RELEASE</version>--> - </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>--> + <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> - <!-- settle --> - <!-- with pentaho-kettle --> - <dependency> - <groupId>pentaho-kettle</groupId> - <artifactId>kettle-core</artifactId> - <version>${kettle-version}</version> - </dependency> - <dependency> - <groupId>pentaho-kettle</groupId> - <artifactId>kettle-engine</artifactId> - <version>${kettle-version}</version> - </dependency> - <dependency> - <groupId>pentaho</groupId> - <artifactId>metastore</artifactId> - <version>${kettle-version}</version> - </dependency> + <!-- settle --> + <!-- with pentaho-kettle --> + <!--<dependency>--> + <!--<groupId>pentaho-kettle</groupId>--> + <!--<artifactId>kettle-core</artifactId>--> + <!--<version>${kettle-version}</version>--> + <!--</dependency>--> + <!--<dependency>--> + <!--<groupId>pentaho-kettle</groupId>--> + <!--<artifactId>kettle-engine</artifactId>--> + <!--<version>${kettle-version}</version>--> + <!--</dependency>--> + <!--<dependency>--> + <!--<groupId>pentaho</groupId>--> + <!--<artifactId>metastore</artifactId>--> + <!--<version>${kettle-version}</version>--> + <!--</dependency>--> - <dependency> - <groupId>pentaho-kettle</groupId> - <artifactId>kettle-dbdialog</artifactId> - <version>${kettle-version}</version> - </dependency> + <!--<dependency>--> + <!--<groupId>pentaho-kettle</groupId>--> + <!--<artifactId>kettle-dbdialog</artifactId>--> + <!--<version>${kettle-version}</version>--> + <!--</dependency>--> - <!--<dependency>--> - <!--<groupId>pentaho</groupId>--> - <!--<artifactId>pentaho-big-data-kettle-plugins-hbase-meta</artifactId>--> - <!--<version>${kettle-version}</version>--> - <!--<scope>compile</scope>--> - <!--</dependency>--> + <!--<dependency>--> + <!--<groupId>pentaho</groupId>--> + <!--<artifactId>pentaho-big-data-kettle-plugins-hbase-meta</artifactId>--> + <!--<version>${kettle-version}</version>--> + <!--<scope>compile</scope>--> + <!--</dependency>--> - <dependency> - <groupId>com.alibaba</groupId> - <artifactId>druid</artifactId> - <version>1.1.10</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>com.alibaba</groupId> - <artifactId>fastjson</artifactId> - <version>1.2.58</version> - </dependency> + <!--<dependency>--> + <!--<groupId>com.alibaba</groupId>--> + <!--<artifactId>fastjson</artifactId>--> + <!--<version>1.2.58</version>--> + <!--</dependency>--> - <dependency> - <groupId>org.apache.commons</groupId> - <artifactId>commons-vfs2</artifactId> - <version>2.1</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>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>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.mongodb</groupId>--> + <!--<artifactId>mongo-java-driver</artifactId>--> + <!--<version>3.2.2</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> + + <!--<dependency>--> + <!--<groupId>org.apache.phoenix</groupId>--> + <!--<artifactId>phoenix-core</artifactId>--> + <!--<version>4.7.0-HBase-1.1</version>--> + <!--</dependency>--> + <!--<dependency>--> + <!--<groupId>org.apache.hbase</groupId>--> + <!--<artifactId>hbase-client</artifactId>--> + <!--<version>1.1.2</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>pentaho</groupId>--> + <!--<artifactId>pentaho-mongo-utils</artifactId>--> + <!--<version>${kettle-version}</version>--> + <!--<scope>compile</scope>--> + <!--</dependency>--> + <!--<dependency>--> + <!--<groupId>pentaho</groupId>--> + <!--<artifactId>pentaho-mongodb-plugin</artifactId>--> + <!--<version>${kettle-version}</version>--> + <!--<scope>compile</scope>--> + <!--</dependency>--> + <!--<dependency>--> + <!--<groupId>pentaho</groupId>--> + <!--<artifactId>pentaho-big-data-kettle-plugins-hbase-meta</artifactId>--> + <!--<version>${kettle-version}</version>--> + <!--<scope>compile</scope>--> + <!--</dependency>--> + <!--<dependency>--> + <!--<groupId>pentaho</groupId>--> + <!--<artifactId>pentaho-big-data-kettle-plugins-hadoop-cluster</artifactId>--> + <!--<version>${kettle-version}</version>--> + <!--<scope>compile</scope>--> + <!--</dependency>--> + <!--<dependency>--> + <!--<groupId>pentaho</groupId>--> + <!--<artifactId>pentaho-database-model</artifactId>--> + <!--<version>${kettle-version}</version>--> + <!--<scope>compile</scope>--> + <!--</dependency>--> + <!--<dependency>--> + <!--<groupId>pentaho</groupId>--> + <!--<artifactId>pentaho-metadata</artifactId>--> + <!--<version>${kettle-version}</version>--> + <!--<scope>compile</scope>--> + <!--</dependency>--> + <dependency> + <groupId>wsdl4j</groupId> + <artifactId>wsdl4j</artifactId> + <version>1.6.3</version> + </dependency> - <dependency> - <groupId>javax.servlet</groupId> - <artifactId>jstl</artifactId> - </dependency> - <!--jdbc--> + <dependency> + <groupId>com.microsoft.sqlserver</groupId> + <artifactId>sqljdbc4</artifactId> + <version>4.0</version> + </dependency> - <dependency> - <groupId>monetdb</groupId> - <artifactId>monetdb-jdbc</artifactId> - <version>2.8</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.mongodb</groupId>--> - <!--<artifactId>mongo-java-driver</artifactId>--> - <!--<version>3.2.2</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> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-lang3</artifactId> + <version>3.10</version> + </dependency> - <dependency> - <groupId>org.apache.phoenix</groupId> - <artifactId>phoenix-core</artifactId> - <version>4.7.0-HBase-1.1</version> - </dependency> - <dependency> - <groupId>org.apache.hbase</groupId> - <artifactId>hbase-client</artifactId> - <version>1.1.2</version> - </dependency> - <!--<dependency>--> - <!--<groupId>pentaho</groupId>--> - <!--<artifactId>pentaho-mongo-utils</artifactId>--> - <!--<version>${kettle-version}</version>--> - <!--<scope>compile</scope>--> - <!--</dependency>--> - <!--<dependency>--> - <!--<groupId>pentaho</groupId>--> - <!--<artifactId>pentaho-mongodb-plugin</artifactId>--> - <!--<version>${kettle-version}</version>--> - <!--<scope>compile</scope>--> - <!--</dependency>--> - <!--<dependency>--> - <!--<groupId>pentaho</groupId>--> - <!--<artifactId>pentaho-big-data-kettle-plugins-hbase-meta</artifactId>--> - <!--<version>${kettle-version}</version>--> - <!--<scope>compile</scope>--> - <!--</dependency>--> - <!--<dependency>--> - <!--<groupId>pentaho</groupId>--> - <!--<artifactId>pentaho-big-data-kettle-plugins-hadoop-cluster</artifactId>--> - <!--<version>${kettle-version}</version>--> - <!--<scope>compile</scope>--> - <!--</dependency>--> - <dependency> - <groupId>pentaho</groupId> - <artifactId>pentaho-database-model</artifactId> - <version>${kettle-version}</version> - <scope>compile</scope> - </dependency> - <dependency> - <groupId>pentaho</groupId> - <artifactId>pentaho-metadata</artifactId> - <version>${kettle-version}</version> - <scope>compile</scope> - </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> + <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.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> + <!--hbase--> - <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> - </dependencies> + <build> + <finalName>mdm-1.2.0</finalName> + <plugins> + <!--<plugin>--> + <!--<groupId>org.apache.maven.plugins</groupId>--> + <!--<artifactId>maven-assembly-plugin</artifactId>--> + <!--<version>3.1.1</version>--> + <!--<configuration>--> + <!--<encoding>UTF-8</encoding>--> + <!--<descriptorRefs>--> + <!--<descriptorRef>jar-with-dependencies</descriptorRef>--> + <!--</descriptorRefs>--> + <!--<archive>--> + <!--<manifest>--> + <!--<mainClass>com.highdatas.mdm.MdmApplication</mainClass>--> + <!--</manifest>--> + <!--</archive>--> + <!--</configuration>--> + <!--<executions>--> + <!--<execution>--> + <!--<id>make-assembly</id>--> + <!--<phase>package</phase>--> + <!--<goals>--> + <!--<goal>single</goal>--> + <!--</goals>--> + <!--</execution>--> + <!--</executions>--> + <!--</plugin>--> - <build> - <plugins> - <plugin> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-maven-plugin</artifactId> - <configuration> + <!--<!– 浠g爜娣锋穯鎻掍欢 –>--> + <!--<plugin>--> + <!--<dependencies>--> + <!--<dependency>--> + <!--<groupId>net.sf.proguard</groupId>--> + <!--<artifactId>proguard-base</artifactId>--> + <!--<!– 2019骞�7鏈�15鏃� jdk1.8 鍏煎鎬ц繕鍙互 –>--> + <!--<version>6.0.2</version>--> + <!--<scope>runtime</scope>--> + <!--</dependency>--> + <!--</dependencies>--> + <!--<groupId>com.github.wvengen</groupId>--> + <!--<artifactId>proguard-maven-plugin</artifactId>--> + <!--<!– 2019骞�7鏈�15鏃� jdk1.8 鍏煎鎬ц繕鍙互 –>--> + <!--<version>2.0.14</version>--> + <!--<executions>--> + <!--<execution>--> + <!--<!– 娣锋穯鏃跺埢锛岃繖閲屾槸鎵撳寘鐨勬椂鍊欐贩娣� –>--> + <!--<phase>package</phase>--> + <!--<goals>--> + <!--<!– 浣跨敤鎻掍欢鐨勪粈涔堝姛鑳斤紝褰撶劧鏄贩娣� –>--> + <!--<goal>proguard</goal>--> + <!--</goals>--> + <!--</execution>--> + <!--</executions>--> + <!--<configuration>--> + <!--<!– 鏄惁灏嗙敓鎴愮殑PG鏂囦欢瀹夎閮ㄧ讲 –>--> + <!--<attach>true</attach>--> + <!--<!– 鏄惁娣锋穯 –>--> + <!--<obfuscate>true</obfuscate>--> + <!--<!– 鎸囧畾鐢熸垚鏂囦欢鍒嗙被 –>--> + <!--<attachArtifactClassifier>pg</attachArtifactClassifier>--> + <!--<!– ProGuard閰嶇疆鍙傛暟(鍙紩鐢╟fg閰嶇疆鏂囦欢) –>--> + <!--<options>--> + <!--<!– JDK鐩爣鐗堟湰1.8–>--> + <!--<option>-target 1.8</option>--> + <!--<!– 涓嶅仛鏀剁缉锛堝垹闄ゆ敞閲娿�佹湭琚紩鐢ㄤ唬鐮侊級 –>--> + <!--<option>-dontshrink</option>--> + <!--<!– 涓嶅仛浼樺寲锛堝彉鏇翠唬鐮佸疄鐜伴�昏緫锛� –>--> + <!--<option>-dontoptimize</option>--> + <!--<!– 涓嶈矾杩囬潪鍏敤绫绘枃浠跺強鎴愬憳 –>--> + <!--<option>-dontskipnonpubliclibraryclasses</option>--> + <!--<option>-dontskipnonpubliclibraryclassmembers</option>--> + <!--<!–涓嶇敤澶у皬鍐欐贩鍚堢被鍚嶆満鍒�–>--> + <!--<option>-dontusemixedcaseclassnames</option>--> + <!--<!– 浼樺寲鏃跺厑璁歌闂苟淇敼鏈変慨楗扮鐨勭被鍜岀被鐨勬垚鍛� –>--> + <!--<option>-allowaccessmodification</option>--> + <!--<!– 纭畾缁熶竴鐨勬贩娣嗙被鐨勬垚鍛樺悕绉版潵澧炲姞娣锋穯 –>--> + <!--<option>-useuniqueclassmembernames</option>--> + <!--<!– 涓嶆贩娣嗘墍鏈夊寘鍚嶏紝鏁翠綋娣锋穯浼氬嚭鐜板悇绉嶅悇鏍风殑闂 绋嬪簭鍙堜笉浼氭妸浣犺寮曠敤鐨勫湴鏂瑰紩鐢ㄥソ 浼氱洿鎺ヤ慨鏀圭被鍚� 鍙傛暟鍚嶇殑 寤鸿涓嶅幓闄� 鏈夎繖涓爣绛剧殑璇� <option>-keep class !com.package.** { *; }</option> 鍔犲叆杩欎釜鏍囩鐨勬姤鍖呭悕绋嬪簭鎵嶄細淇敼 –>--> + <!--<option>-keeppackagenames</option>--> + <!--<option>-adaptclassstrings</option>--> + <!--<!– <option>-keepdirectories</option> –>--> + <!--<!– 涓嶆贩娣嗘墍鏈夌壒娈婄殑绫� –>--> + <!--<option>-keepattributes--> + <!--Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,LocalVariable*Table,*Annotation*,Synthetic,EnclosingMethod--> + <!--</option>--> + <!--<!– This option will save all original methods parameters in files defined--> + <!--in -keep sections, otherwise all parameter names will be obfuscate. –>--> + <!--<option>-keepparameternames</option>--> + <!--<option>-keepclassmembers class * {--> + <!--@org.springframework.beans.factory.annotation.Autowired *;--> + <!--@org.springframework.beans.factory.annotation.Value *;--> + <!--}--> + <!--</option>--> + <!--<!– 娣锋穯杩欎釜鍖呬笅鐨勭被 姝ゅ闇�瑕佹洿鏀逛负鑷繁闇�瑕佹贩娣嗙殑鍖呭悕–>--> + <!--<option>-keep class !com.highdatas.mdm.process.** { *; }</option>--> + <!--<option>-keep class !com.highdatas.mdm.service.** { *; }</option>--> + <!--<option>-keep class !com.highdatas.mdm.controller.** { *; }</option>--> + + <!--<!– 涓嶆贩娣唌ain鏂规硶 姝ゅ闇�瑕佹洿鏀逛负鑷繁鐨勫惎鍔ㄧ被璺緞 –>--> + <!--<option>-keep class com.highdatas.mdm.MdmApplication { *; }</option>--> + <!--<option>-keep class com.highdatas.mdm.util.** { *; }</option>--> + <!--<option>-keep class com.highdatas.mdm.mapper.** { *; }</option>--> + <!--<option>-keep class com.highdatas.mdm.job.** { *; }</option>--> + <!--<option>-keep class com.highdatas.mdm.pojo.** { *; }</option>--> + <!--<option>-keep class com.highdatas.mdm.entity.** { *; }</option>--> + + <!--<!– 涓嶆贩娣嗘墍鏈夌殑set/get鏂规硶锛屾瘯绔熼」鐩腑浣跨敤鐨勯儴鍒嗙涓夋柟妗嗘灦锛堜緥濡係hiro锛変細鐢ㄥ埌澶ч噺鐨剆et/get鏄犲皠 –>--> + <!--<option>-keepclassmembers public class * {void set*(***);*** get*();}</option>--> + <!--<!– 涓嶆贩娣嗗寘涓殑鎵�鏈夌被浠ュ強绫荤殑灞炴�у強鏂规硶锛屽疄浣撳寘锛屾贩娣嗕簡浼氬鑷碠RM妗嗘灦鍙婂墠绔棤娉曡瘑鍒� –>--> + + <!--<!– 涓嶅鍖呯被鐨勭被鍚嶈繘琛屾贩娣嗭紝浣嗗绫讳腑鐨勫睘鎬у拰鏂规硶娣锋穯 –>--> + <!--<!–<option>-keep class com.package.util.** </option>–>--> + <!--<!– <option>-keep class com.example.service.** </option>–>--> + + <!--<!– 涓嶆贩娣嗗寘涓嬬殑鎵�鏈夌被鍚嶏紝涓旂被涓殑鏂规硶鍜屽睘鎬т篃涓嶆贩娣� 妤间富宸茬粡鎶婂畠娉ㄦ帀浜� 鍥犱负娌$敤鍒� –>--> + <!--<!–<option>-keep class com.example.redis.** { *; }</option>--> + <!--<option>-keep class com.example.domain.** { *; }</option>--> + <!--<option>-keep class com.example.dto.** { *; } </option>--> + <!--<option>-keep class com.example.config.**{ *; }</option>--> + <!--<option>-keep class com.example.dao.** { *; }</option>–>--> + <!--<!– 鏃犺璺宠繃璀﹀憡 鍥犱负淇敼浠g爜鐨勮繃绋嬬▼搴忔娴嬪埌鏈変簺鏂囦欢涓嶈兘鏇存敼灏变細鎶ヨ鍛婂鑷村け璐� 濡傛灉瀵硅嚜宸卞啓鐨勪唬鐮佹瘮杈冩湁淇″績鐨勮瘽鍙互鐩存帴鏃犺 –>--> + <!--<option>-dontwarn **</option>--> + <!--</options>--> + <!--<!–class 娣锋穯鍚庤緭鍑虹殑jar鍖� –>--> + <!--<outjar>${project.build.finalName}-pg.jar</outjar>--> + <!--<!– 娣锋穯鏃堕渶瑕佸紩鐢ㄧ殑java搴擄紝杩欎簺搴撶殑绫讳笉浼氬仛娣锋穯 –>--> + <!--<libs>--> + <!--<lib>${java.home}/lib/rt.jar</lib>--> + <!--<lib>${java.home}/lib/jce.jar</lib>--> + <!--</libs>--> + <!--<!– 闇�瑕佸仛娣锋穯鐨刯ar鎴栫洰褰� –>--> + <!--<injar>classes</injar>--> + <!--<!– 杈撳嚭鐩綍 –>--> + <!--<outputDirectory>${project.build.directory}</outputDirectory>--> + <!--</configuration>--> + <!--</plugin>--> + + <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> + <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> - </plugins> + </plugin> - </build> + </plugins> + + </build> </project> -- Gitblit v1.8.0