1 Star 0 Fork 129

Jacques-Fresco/weiyu.im

forked from 微语/weiyu.im 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 3.04 KB
一键复制 编辑 原始数据 按行查看 历史
jack ning 提交于 2024-07-20 08:25 . Update pom.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>
<!-- https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-3.2-Release-Notes -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.2</version>
</parent>
<!-- https://www.sofastack.tech/projects/sofa-boot/quick-start/ -->
<!-- <parent>
<groupId>com.alipay.sofa</groupId>
<artifactId>sofaboot-dependencies</artifactId>
<version>4.2.0</version>
</parent> -->
<groupId>com.bytedesk</groupId>
<artifactId>im</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<modules>
<module>modules</module>
<module>starter</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>17</java.version>
<spring.boot.version>3.2.0</spring.boot.version>
<sofa.boot.version>4.2.0</sofa.boot.version>
<querydsl.version>5.1.0</querydsl.version>
<revision>0.3.0-BYTEDESK</revision>
</properties>
<dependencies>
</dependencies>
<build>
<plugins>
<!-- 添加flatten-maven-plugin插件 -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.3.0</version>
<inherited>true</inherited>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
<configuration>
<!-- 避免IDE将 .flattened-pom.xml 自动识别为功能模块 -->
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
<pomElements>
<parent>expand</parent>
<distributionManagement>remove</distributionManagement>
<repositories>remove</repositories>
</pomElements>
</configuration>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/Jacques-Fresco/weiyu.im.git
[email protected]:Jacques-Fresco/weiyu.im.git
Jacques-Fresco
weiyu.im
weiyu.im
main

搜索帮助