1 Star 10 Fork 0

Ken/qphone-education-pom

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 10.56 KB
一键复制 编辑 原始数据 按行查看 历史
ken 提交于 2022-09-29 21:49 . 红包回退的功能
<?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.qf</groupId>
<artifactId>qphone-education-pom</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>qphone-ability</module>
<module>qphone-business</module>
<module>qphone-config</module>
<module>qphone-commons</module>
<module>qphone-data</module>
</modules>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- 版本控制 -->
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
<spring-boot.version>2.3.0.RELEASE</spring-boot.version>
<spring-cloud.version>Hoxton.SR9</spring-cloud.version>
<spring-cloud-alibaba.version>2.2.5.RELEASE</spring-cloud-alibaba.version>
<qphone.version>1.0-SNAPSHOT</qphone.version>
<log4j2.version>2.15.0</log4j2.version>
<disruptor.version>3.4.2</disruptor.version>
<mybatis-plus.version>3.5.1</mybatis-plus.version>
<ken-page.version>1.2.9</ken-page.version>
<jjwt.version>0.9.1</jjwt.version>
<fastjson.version>2.0.2</fastjson.version>
<mybatis.version>3.5.9</mybatis.version>
<apm-toolkit-log4j-2.x.version>8.9.0</apm-toolkit-log4j-2.x.version>
<ken-event.version>1.1</ken-event.version>
<redisson.version>3.13.6</redisson.version>
<xxl-job.version>2.3.0</xxl-job.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- 继承SpringBoot工程 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<!-- SpringCloud & SpringCloud Alibaba -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>${spring-cloud-alibaba.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<!-- 日志框架的版本控制 -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j2.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j2.version}</version>
</dependency>
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>${disruptor.version}</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatis-plus.version}</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-annotation</artifactId>
<version>${mybatis-plus.version}</version>
</dependency>
<dependency>
<groupId>io.github.verygoodwlk</groupId>
<artifactId>ken-page-boot-starter</artifactId>
<version>${ken-page.version}</version>
</dependency>
<dependency>
<groupId>io.github.verygoodwlk</groupId>
<artifactId>ken-page-mybatis-commons</artifactId>
<version>${ken-page.version}</version>
</dependency>
<!-- 事件总线的相关依赖 -->
<dependency>
<groupId>io.github.verygoodwlk</groupId>
<artifactId>ken-event-boot-starter</artifactId>
<version>${ken-event.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>${mybatis.version}</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>${jjwt.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
<dependency>
<groupId>org.apache.skywalking</groupId>
<artifactId>apm-toolkit-log4j-2.x</artifactId>
<version>${apm-toolkit-log4j-2.x.version}</version>
</dependency>
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-spring-boot-starter</artifactId>
<version>${redisson.version}</version>
</dependency>
<dependency>
<groupId>com.xuxueli</groupId>
<artifactId>xxl-job-core</artifactId>
<version>${xxl-job.version}</version>
</dependency>
<dependency>
<groupId>com.qf</groupId>
<artifactId>qphone-commons-core</artifactId>
<version>${qphone.version}</version>
</dependency>
<dependency>
<groupId>com.qf</groupId>
<artifactId>qphone-commons-web</artifactId>
<version>${qphone.version}</version>
</dependency>
<dependency>
<groupId>com.qf</groupId>
<artifactId>qphone-commons-data</artifactId>
<version>${qphone.version}</version>
</dependency>
<dependency>
<groupId>com.qf</groupId>
<artifactId>qphone-config</artifactId>
<version>${qphone.version}</version>
</dependency>
<dependency>
<groupId>com.qf</groupId>
<artifactId>qphone-commons-mybatis</artifactId>
<version>${qphone.version}</version>
</dependency>
<dependency>
<groupId>com.qf</groupId>
<artifactId>qphone-data-user</artifactId>
<version>${qphone.version}</version>
</dependency>
<dependency>
<groupId>com.qf</groupId>
<artifactId>qphone-business-user-feign</artifactId>
<version>${qphone.version}</version>
</dependency>
<dependency>
<groupId>com.qf</groupId>
<artifactId>qphone-data-notify</artifactId>
<version>${qphone.version}</version>
</dependency>
<dependency>
<groupId>com.qf</groupId>
<artifactId>qphone-commons-redis</artifactId>
<version>${qphone.version}</version>
</dependency>
<dependency>
<groupId>com.qf</groupId>
<artifactId>qphone-data-course</artifactId>
<version>${qphone.version}</version>
</dependency>
<dependency>
<groupId>com.qf</groupId>
<artifactId>qphone-data-redenvlopes</artifactId>
<version>${qphone.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<!-- maven的占位符 -->
<profiles>
<profile>
<id>mydev</id>
<properties>
<!-- 开发 运行环境 -->
<runtime-profile>dev</runtime-profile>
<nacos-server>192.168.118.188:8848</nacos-server>
</properties>
</profile>
<profile>
<id>mytest</id>
<properties>
<!-- 测试 运行环境 -->
<runtime-profile>test</runtime-profile>
<nacos-server>192.168.118.188:8848</nacos-server>
</properties>
</profile>
</profiles>
<build>
<!-- 占位符生效的配置 -->
<resources>
<resource>
<!-- 指定的资源文件中,占位符生效 -->
<filtering>true</filtering>
<directory>src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
<plugins>
<!-- 父工程统一管理maven编译版本 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<target>${maven.compiler.target}</target>
<source>${maven.compiler.source}</source>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!-- SpringBoot和maven的整合插件 - 必须是SpringBoot 启动的工程去继承 -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/wlkken/qphone-education-pom.git
git@gitee.com:wlkken/qphone-education-pom.git
wlkken
qphone-education-pom
qphone-education-pom
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385