20 Star 156 Fork 64

兮家小二 / xijia-plus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 11.73 KB
一键复制 编辑 原始数据 按行查看 历史
“wangsong” 提交于 2024-04-22 10:18 . 版本号更新
<?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.7.12</version>
<relativePath/>
</parent>
<modules>
<module>xj-base</module>
<module>xj-starter</module>
</modules>
<name>xijia-plus</name>
<description>兮家plus基础架构, xijia-plus快速开发骨架, xijia-plus 通用后台管理系统</description>
<!-- 对应名称: 如果不定义名称系统默认为 <name>${groupId}:${artifactId}:${revision} </name> -->
<groupId>io.github.wslxm</groupId>
<artifactId>xijia-plus</artifactId>
<version>2.2.7</version>
<packaging>pom</packaging>
<properties>
<!-- 架构版本 RELEASE=正式版 SNAPSHOT=开发版(实时刷新jar依赖), 改版本号修改时请使用全局替换, ${revision} 读取会导致子模块无法单独打包 -->
<revision>2.2.7</revision>
<!-- 文件拷贝时的编码 -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- 编译时的编码 -->
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<!-- 编码环境 jdk 版本-->
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
<!-- 数据源相关 -->
<mybatis-plus-boot-starter.version>3.5.3</mybatis-plus-boot-starter.version>
<mysql-connector-java.version>8.0.16</mysql-connector-java.version>
<druid-spring-boot-starter.version>1.2.6</druid-spring-boot-starter.version>
<jjwt.version>0.9.1</jjwt.version>
<!-- 第三方工具支持 -->
<cglib.version>3.2.4</cglib.version>
<hutool-all.version>5.8.20</hutool-all.version>
<commons-lang3.version>3.9</commons-lang3.version>
<fastjson.version>1.2.61</fastjson.version>
</properties>
<!-- 统一依赖管理 -->
<dependencyManagement>
<dependencies>
<!-- ================================================ -->
<!-- ============== 当前架构jar - start ================ -->
<!-- ================================================ -->
<!-- 第三方服务- cord核心包 -->
<dependency>
<groupId>io.github.wslxm</groupId>
<artifactId>xj-base-core</artifactId>
<version>${revision}</version>
</dependency>
<!-- 系统核心代码 -->
<dependency>
<groupId>io.github.wslxm</groupId>
<artifactId>xj-base-admin</artifactId>
<version>${revision}</version>
</dependency>
<!-- 代码生成 -->
<dependency>
<groupId>io.github.wslxm</groupId>
<artifactId>xj-base-generate</artifactId>
<version>${revision}</version>
</dependency>
<!-- 阿里云oss -->
<dependency>
<groupId>io.github.wslxm</groupId>
<artifactId>xj-base-file</artifactId>
<version>${revision}</version>
</dependency>
<!-- swagger 接口文档 -->
<dependency>
<groupId>io.github.wslxm</groupId>
<artifactId>xj-swagger2</artifactId>
<version>${revision}</version>
</dependency>
<!-- redis 服务 -->
<dependency>
<groupId>io.github.wslxm</groupId>
<artifactId>xj-redis</artifactId>
<version>${revision}</version>
</dependency>
<!-- websocket 服务 -->
<dependency>
<groupId>io.github.wslxm</groupId>
<artifactId>xj-websocket</artifactId>
<version>${revision}</version>
</dependency>
<!-- 机器人 服务 -->
<dependency>
<groupId>io.github.wslxm</groupId>
<artifactId>xj-robot</artifactId>
<version>${revision}</version>
</dependency>
<!-- ================================================ -->
<!-- ============== 当前架构jar - end ================ -->
<!-- ============== 外部jar - start ================ -->
<!-- ================================================ -->
<!-- mybatis-plus -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatis-plus-boot-starter.version}</version>
</dependency>
<!-- mysql 8.0.16 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql-connector-java.version}</version>
</dependency>
<!-- druid 数据源 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>${druid-spring-boot-starter.version}</version>
</dependency>
<!-- jwt -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>${jjwt.version}</version>
</dependency>
<!-- cglib dto转po/vo使用 -->
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>${cglib.version}</version>
</dependency>
<!-- Hutool是一个小而全的Java工具类库 -->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool-all.version}</version>
</dependency>
<!-- commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<!-- fastjson -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
<!-- ================================================ -->
<!-- ============== 外部jar - end ================== -->
<!-- ================================================ -->
</dependencies>
</dependencyManagement>
<!-- ============================ 打包到中央仓库配置 start ================================ -->
<!-- =================== 发布命令:mvn clean deploy -P release ========================= -->
<!-- =================== 发布验证平台: https://s01.oss.sonatype.org/ ========================= -->
<!-- =================== 使用管理员身份打开 cmd 执行发布命令 ========================== -->
<!-- =================== 弹出GunPG 停止运行不管,直接点回车关闭程序 ========================== -->
<!-- =================== 文章: https://blog.csdn.net/qq_41463655/article/details/120728657 ========================== -->
<!-- 中央仓库配置 -->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<!-- 许可证 -->
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- 源码信息 -->
<scm>
<url>https://github.com/wslxm/xijia-plus</url>
<connection>scm:https://github.com/wslxm/xijia-plus.git</connection>
<developerConnection>scm:https://github.com/wslxm/xijia-plus.git</developerConnection>
</scm>
<!-- 个人信息,对应 gpg 配置 -->
<developers>
<developer>
<name>wangsong</name>
<email>1720696548@qq.com</email>
<timezone>+8</timezone>
</developer>
</developers>
<!-- 多环境配置 - 中央仓库发布环境配置 -->
<profiles>
<profile>
<id>release</id>
<!--打包配置到中央仓库的统一配置,如果使用该源码开发,请移除-->
<build>
<finalName>${project.artifactId}-${revision}</finalName>
<plugins>
<!-- java-doc配置 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration><!-- add this to disable checking -->
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<!--使用source 进行jar打包-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- gpg 配置 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- ========================== 打包到中央仓库配置 end ========================== -->
</project>
Java
1
https://gitee.com/wslxm/xijia-plus.git
git@gitee.com:wslxm/xijia-plus.git
wslxm
xijia-plus
xijia-plus
2.x

搜索帮助