31 Star 226 Fork 119

鲲鹏 / JavaWeb_Cloud_Eureka_EleVue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 5.19 KB
一键复制 编辑 原始数据 按行查看 历史
鲲鹏 提交于 2023-05-02 17:53 . 更新升级
<?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.3.2.RELEASE</version>
</parent>
<groupId>com.javaweb</groupId>
<artifactId>javaweb</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>javaweb</name>
<description>JavaWeb微服务Eureka版本</description>
<!-- 子模块 -->
<modules>
<module>javaweb-eureka</module>
<module>javaweb-common</module>
<module>javaweb-gateway</module>
<module>javaweb-auth</module>
<module>javaweb-api</module>
<module>javaweb-service</module>
<module>javaweb-config</module>
<module>javaweb-configclient</module>
</modules>
<properties>
<javaweb.version>1.0.0</javaweb.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<spring-cloud.version>Hoxton.SR6</spring-cloud.version>
<swagger.fox.version>2.9.2</swagger.fox.version>
<swagger.core.version>1.5.24</swagger.core.version>
<commons.io.version>2.5</commons.io.version>
<commons.fileupload.version>1.3.3</commons.fileupload.version>
<common-pool.version>2.6.2</common-pool.version>
<fastjson.version>1.2.76</fastjson.version>
<poi.version>3.17</poi.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<!-- 依赖声明 -->
<dependencyManagement>
<dependencies>
<!-- 核心模块依赖 -->
<dependency>
<groupId>com.javaweb</groupId>
<artifactId>javaweb-common-framework</artifactId>
<version>${javaweb.version}</version>
</dependency>
<!-- 安全认证模块依赖 -->
<dependency>
<groupId>com.javaweb</groupId>
<artifactId>javaweb-common-security</artifactId>
<version>${javaweb.version}</version>
</dependency>
<!-- 系统API接口模块依赖 -->
<dependency>
<groupId>com.javaweb</groupId>
<artifactId>javaweb-api-system</artifactId>
<version>${javaweb.version}</version>
</dependency>
<!-- Redis缓存服务模块依赖 -->
<dependency>
<groupId>com.javaweb</groupId>
<artifactId>javaweb-common-redis</artifactId>
<version>${javaweb.version}</version>
</dependency>
<!-- SpringCloud 微服务 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Excel工具 -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>${poi.version}</version>
</dependency>
<!-- JSON 解析器和生成器 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
<!-- IO常用工具类 -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
<!-- Swagger 依赖配置 -->
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>${swagger.core.version}</version>
</dependency>
<!-- 文件上传工具类 -->
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>${commons.fileupload.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/javaweb520/JavaWeb_Cloud_Eureka_EleVue.git
git@gitee.com:javaweb520/JavaWeb_Cloud_Eureka_EleVue.git
javaweb520
JavaWeb_Cloud_Eureka_EleVue
JavaWeb_Cloud_Eureka_EleVue
master

搜索帮助