292 lines
12 KiB
XML
292 lines
12 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.zhangmeng</groupId>
|
|
<artifactId>mystyle-cloud-parent</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>7</source>
|
|
<target>7</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<modules>
|
|
<module>mystyle-cloud-file</module>
|
|
<module>mystyle-cloud-gateway</module>
|
|
<module>mystyle-cloud-model</module>
|
|
<module>mystyle-cloud-admin-manager</module>
|
|
<module>mystyle-cloud-api</module>
|
|
<module>mystyle-cloud-canal</module>
|
|
<module>mystyle-cloud-mq</module>
|
|
<module>mystyle-cloud-oauth</module>
|
|
<module>mystyle-cloud-blog</module>
|
|
<module>mystyle-cloud-quartz</module>
|
|
<module>mystyle-cloud-mail</module>
|
|
<module>mystyle-cloud-fiction</module>
|
|
<module>mystyle-cloud-admin-monitor</module>
|
|
|
|
</modules>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<spring-boot.version>2.4.4</spring-boot.version>
|
|
<spring-cloud.version>2020.0.2</spring-cloud.version>
|
|
<spring-cloud-alibaba.version>2020.0.RC1</spring-cloud-alibaba.version>
|
|
<tk.mapper.version>2.1.5</tk.mapper.version>
|
|
<pagehelper.version>1.3.0</pagehelper.version>
|
|
<fastdfs-client-java.version>1.27.0.0</fastdfs-client-java.version>
|
|
<jackson.version>2.9.7</jackson.version>
|
|
<hutool.version>5.5.7</hutool.version>
|
|
<captcha.version>1.6.2</captcha.version>
|
|
<swagger.version>2.8.0</swagger.version>
|
|
<apache.xmlgraphics.version>1.13</apache.xmlgraphics.version>
|
|
<jsoup.version>1.14.2</jsoup.version>
|
|
<metadata-extractor.version>2.16.0</metadata-extractor.version>
|
|
<jave.version>1.0.2</jave.version>
|
|
<javacpp.version>1.5.2</javacpp.version>
|
|
<javacv.version>1.5.2</javacv.version>
|
|
<opencv-platform.version>4.1.2-1.5.2</opencv-platform.version>
|
|
<ffmpeg-platform.version>4.2.1-1.5.2</ffmpeg-platform.version>
|
|
<fastjson.version>1.2.75</fastjson.version>
|
|
<jwt.version>0.9.1</jwt.version>
|
|
<jodconverter.version>2.2.1</jodconverter.version>
|
|
<commons-io.version>2.8.0</commons-io.version>
|
|
<commons-lang3.version>3.11</commons-lang3.version>
|
|
<commons-codec.version>1.15</commons-codec.version>
|
|
<commons-collections.version>3.2.2</commons-collections.version>
|
|
<commons-fileupload.version>1.4</commons-fileupload.version>
|
|
<commons-pool2.version>2.9.0</commons-pool2.version>
|
|
<commons-beanutils.version>1.9.4</commons-beanutils.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- spring boot 依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>${spring-boot.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<!-- spring cloud 依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
<version>${spring-cloud.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<!-- spring cloud alibaba 依赖 -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
<version>${spring-cloud-alibaba.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/tk.mybatis/mapper-spring-boot-starter -->
|
|
<dependency>
|
|
<groupId>tk.mybatis</groupId>
|
|
<artifactId>mapper-spring-boot-starter</artifactId>
|
|
<version>${tk.mapper.version}</version>
|
|
</dependency>
|
|
<!--分页-->
|
|
<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
<version>${pagehelper.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.oschina.zcx7878</groupId>
|
|
<artifactId>fastdfs-client-java</artifactId>
|
|
<version>${fastdfs-client-java.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
<version>${jackson.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
<!--验证码-->
|
|
<dependency>
|
|
<groupId>com.github.whvcse</groupId>
|
|
<artifactId>easy-captcha</artifactId>
|
|
<version>${captcha.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
<version>${swagger.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-bean-validators</artifactId>
|
|
<version>${swagger.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
<version>${swagger.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
<artifactId>batik-codec</artifactId>
|
|
<version>${apache.xmlgraphics.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
<artifactId>batik-css</artifactId>
|
|
<version>${apache.xmlgraphics.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
<artifactId>batik-svg-dom</artifactId>
|
|
<version>${apache.xmlgraphics.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
<artifactId>batik-svggen</artifactId>
|
|
<version>${apache.xmlgraphics.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jsoup</groupId>
|
|
<artifactId>jsoup</artifactId>
|
|
<version>${jsoup.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.drewnoakes</groupId>
|
|
<artifactId>metadata-extractor</artifactId>
|
|
<version>${metadata-extractor.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>it.sauronsoftware</groupId>
|
|
<artifactId>jave</artifactId>
|
|
<version>${jave.version}</version>
|
|
</dependency>
|
|
|
|
<!--javacv 开始-->
|
|
<dependency>
|
|
<groupId>org.bytedeco</groupId>
|
|
<artifactId>javacpp</artifactId>
|
|
<version>${javacpp.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bytedeco</groupId>
|
|
<artifactId>javacv</artifactId>
|
|
<version>${javacv.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bytedeco</groupId>
|
|
<artifactId>opencv-platform</artifactId>
|
|
<version>${opencv-platform.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bytedeco</groupId>
|
|
<artifactId>ffmpeg-platform</artifactId>
|
|
<version>${ffmpeg-platform.version}</version>
|
|
</dependency>
|
|
<!--javacv 结束-->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>${fastjson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt</artifactId>
|
|
<version>${jwt.version}</version>
|
|
</dependency>
|
|
<!--openoffice-->
|
|
<dependency>
|
|
<groupId>com.artofsolving</groupId>
|
|
<artifactId>jodconverter</artifactId>
|
|
<version>${jodconverter.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commons-io.version}</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang3.version}</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>${commons-codec.version}</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/commons-collections/commons-collections -->
|
|
<dependency>
|
|
<groupId>commons-collections</groupId>
|
|
<artifactId>commons-collections</artifactId>
|
|
<version>${commons-collections.version}</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>${commons-fileupload.version}</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-pool2</artifactId>
|
|
<version>${commons-pool2.version}</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
|
|
<dependency>
|
|
<groupId>commons-beanutils</groupId>
|
|
<artifactId>commons-beanutils</artifactId>
|
|
<version>${commons-beanutils.version}</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-starter-server -->
|
|
<dependency>
|
|
<groupId>de.codecentric</groupId>
|
|
<artifactId>spring-boot-admin-starter-server</artifactId>
|
|
<version>2.5.4</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-starter-server -->
|
|
<dependency>
|
|
<groupId>de.codecentric</groupId>
|
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
|
<version>2.5.4</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-server-ui -->
|
|
<dependency>
|
|
<groupId>de.codecentric</groupId>
|
|
<artifactId>spring-boot-admin-server-ui</artifactId>
|
|
<version>2.5.4</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</project> |