123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <?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>
- <groupId>com.studio.nx</groupId>
- <artifactId>nx-framework-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>nx-framework-parent</name>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.5.0</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <properties>
- <java.version>1.8</java.version>
- <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
- <project.build.locales>zh_CN</project.build.locales>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <skipTests>true</skipTests> <!-- 项目打包的时候跳过单元测试 -->
- <spring-boot.version>2.5.0</spring-boot.version>
- <spring-cloud-starter-openfeign.version>3.0.2</spring-cloud-starter-openfeign.version>
- <javax.servlet-api.version>4.0.1</javax.servlet-api.version>
- <springfox-boot-starter.version>3.0.0</springfox-boot-starter.version>
- <mybatis-plus-boot-starter.version>3.4.3</mybatis-plus-boot-starter.version>
- <lombok.version>1.18.20</lombok.version>
- <mapstruct.version>1.4.2.Final</mapstruct.version>
- <hutool-all.version>5.4.4</hutool-all.version>
- <fastjson.version>1.2.76</fastjson.version>
- </properties>
- <modules>
- <module>nx-framework-dto</module>
- <module>nx-framework-entity</module>
- <module>nx-framework-error</module>
- <module>nx-framework-i18n</module>
- <module>nx-framework-jwt</module>
- <module>nx-framework-util</module>
- <module>nx-framework-log</module>
- <module>nx-framework-swagger</module><!-- 框架通用的接口文档配置类 -->
- <module>nx-uiac</module><!-- 账号认证 -->
- </modules>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <version>${spring-boot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-openfeign</artifactId>
- <version>${spring-cloud-starter-openfeign.version}</version>
- </dependency>
- <!-- https://mp.weixin.qq.com/s/CZdLDaJEFc5s_fpAeQ7ZbA -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-validation</artifactId>
- <version>${spring-boot.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- <version>${spring-boot.version}</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>${javax.servlet-api.version}</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-boot-starter</artifactId>
- <version>${springfox-boot-starter.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatis-plus-boot-starter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <optional>true</optional>
- <version>${lombok.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mapstruct</groupId>
- <artifactId>mapstruct</artifactId>
- <version>${mapstruct.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mapstruct</groupId>
- <artifactId>mapstruct-jdk8</artifactId>
- <version>${mapstruct.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mapstruct</groupId>
- <artifactId>mapstruct-processor</artifactId>
- <version>${mapstruct.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>${hutool-all.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>${fastjson.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|