123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- <?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>
- <groupId>com.jihengbel.intelligent</groupId>
- <artifactId>intelligent-factory</artifactId>
- <version>1.0</version>
- <packaging>pom</packaging>
- <modules>
- <module>common-base</module>
- <module>common-config</module>
- <module>common-user</module>
- <module>application-file</module>
- <module>application-facade</module>
- <module>application-task</module>
- </modules>
- <properties>
- <intelligent.factory.version>1.0</intelligent.factory.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <commons.lang3.version>3.8</commons.lang3.version>
- <commons.collections4.version>4.3</commons.collections4.version>
- <commons.beanutils.version>1.9.3</commons.beanutils.version>
- <fastjson.version>1.2.75</fastjson.version>
- <ansj_seg.version>5.1.1</ansj_seg.version>
- <easyexcel.version>2.2.8</easyexcel.version>
- <swagger.version>1.9.1.RELEASE</swagger.version>
- <mybatis.plus.version>3.4.1</mybatis.plus.version>
- <mybatis.plus.dynamic.datasource.version>3.3.1</mybatis.plus.dynamic.datasource.version>
- <swagger.bootstrap.ui.version>1.9.6</swagger.bootstrap.ui.version>
- <pinyin4j.version>2.5.1</pinyin4j.version>
- <flying.saucer.pdf.version>9.1.5</flying.saucer.pdf.version>
- <xmlworker.version>5.5.1</xmlworker.version>
- <shardingsphere.version>4.1.1</shardingsphere.version>
- <spring.kafka.version>2.3.11.RELEASE</spring.kafka.version>
- <spring.boot.version>2.3.9.RELEASE</spring.boot.version>
- <spring.aop.version>5.2.9.RELEASE</spring.aop.version>
- <commons.codec.version>1.14</commons.codec.version>
- <jjtw.version>0.9.1</jjtw.version>
- <logstash.logback.encoder>5.3</logstash.logback.encoder>
- <guava.version>20.0</guava.version>
- <mysql.connector.java.version>8.0.21</mysql.connector.java.version>
- <jetcache.starter.redis.version>2.5.14</jetcache.starter.redis.version>
- <jedis.version>2.9.0</jedis.version>
- <hutool.all.version>5.5.8</hutool.all.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>${easyexcel.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>${spring.boot.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt</artifactId>
- <version>${jjtw.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
- <version>${mybatis.plus.dynamic.datasource.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>${fastjson.version}</version>
- </dependency>
- <dependency>
- <groupId>com.spring4all</groupId>
- <artifactId>swagger-spring-boot-starter</artifactId>
- <version>${swagger.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.xiaoymin</groupId>
- <artifactId>swagger-bootstrap-ui</artifactId>
- <version>${swagger.bootstrap.ui.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>${commons.lang3.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-collections4</artifactId>
- <version>${commons.collections4.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <version>${commons.beanutils.version}</version>
- </dependency>
- <!--导出pdf-->
- <dependency>
- <groupId>com.itextpdf.tool</groupId>
- <artifactId>xmlworker</artifactId>
- <version>${xmlworker.version}</version>
- </dependency>
- <dependency>
- <groupId>org.xhtmlrenderer</groupId>
- <artifactId>flying-saucer-pdf</artifactId>
- <version>${flying.saucer.pdf.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>${commons.codec.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-core</artifactId>
- <version>${mybatis.plus.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatis.plus.version}</version>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql.connector.java.version}</version>
- </dependency>
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>${guava.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alicp.jetcache</groupId>
- <artifactId>jetcache-starter-redis</artifactId>
- <version>${jetcache.starter.redis.version}</version>
- </dependency>
- <dependency>
- <groupId>redis.clients</groupId>
- <artifactId>jedis</artifactId>
- <version>${jedis.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>${hutool.all.version}</version>
- </dependency>
- <dependency>
- <groupId>com.jihengbel.intelligent</groupId>
- <artifactId>common-config</artifactId>
- <version>${intelligent.factory.version}</version>
- </dependency>
- <dependency>
- <groupId>com.jihengbel.intelligent</groupId>
- <artifactId>common-base</artifactId>
- <version>${intelligent.factory.version}</version>
- </dependency>
- <dependency>
- <groupId>com.jihengbel.intelligent</groupId>
- <artifactId>common-user</artifactId>
- <version>${intelligent.factory.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>2.3.9.RELEASE</version>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- </project>
|