43 Star 307 Fork 136

Crabc / crabc-api

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.43 KB
一键复制 编辑 原始数据 按行查看 历史
Crabc 提交于 2024-05-18 17:19 . 更新版本3.0.1
<?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>cn.crabc</groupId>
<artifactId>crabc</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<description>通用开发平台</description>
<modules>
<module>crabc-boot</module>
<module>crabc-spring-boot-starter</module>
</modules>
<properties>
<!-- crabc 版本-->
<revision>3.0.1</revision>
<java.version>21</java.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring-boot.version>3.2.5</spring-boot.version>
<spring-boot.mybatis.version>3.0.3</spring-boot.mybatis.version>
<pagehelper.boot.version>2.1.0</pagehelper.boot.version>
<spring-boot.druid.version>1.2.22</spring-boot.druid.version>
<fastjson.version>2.0.49</fastjson.version>
<jwt.version>0.12.5</jwt.version>
<commons-pool2.version>2.12.0</commons-pool2.version>
<sentinel.version>1.8.6</sentinel.version>
<easyexcel.version>3.3.2</easyexcel.version>
<alibaba-sentinel.version>2023.0.1.0</alibaba-sentinel.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</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>
<parameters>true</parameters>
</configuration>
</plugin>
<!-- 统一 revision 版本 -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.5.0</version>
<configuration>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
<updatePomFile>true</updatePomFile>
</configuration>
<executions>
<execution>
<goals>
<goal>flatten</goal>
</goals>
<id>flatten</id>
<phase>process-resources</phase>
</execution>
<execution>
<goals>
<goal>clean</goal>
</goals>
<id>flatten.clean</id>
<phase>clean</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/linebyte/crabc.git
git@gitee.com:linebyte/crabc.git
linebyte
crabc
crabc-api
dev

搜索帮助