1 Star 1 Fork 3

wangxinxx / diboot-hbzx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 5.87 KB
一键复制 编辑 原始数据 按行查看 历史
wangxinxx 提交于 2023-12-09 14:20 . 3.1.2 init
<?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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.17</version>
<relativePath/>
</parent>
<groupId>com.begcode</groupId>
<artifactId>diboot-root</artifactId>
<version>3.1.2</version>
<packaging>pom</packaging>
<description>diboot core extend by huibozhixin</description>
<url>http://www.gitee.com/wangxinxx/diboot-hbzx</url>
<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>
<developers>
<developer>
<name>Wangxin</name>
<email>wangxinxx@163.com</email>
<organization>HuiBoZhiXin</organization>
<organizationUrl>http://www.huibozhixin.com/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@gitee.com:wangxinxx/diboot-hbzx.git</connection>
<developerConnection>scm:git:git@gitee.com:wangxinxx/diboot-hbzx.git</developerConnection>
<url>https://gitee.com/wangxinxx/diboot-hbzx</url>
</scm>
<modules>
<module>diboot-core</module>
<!--<module>diboot-core-starter</module>
<module>diboot-file-starter</module>
<module>diboot-iam-starter</module>
<module>diboot-scheduler-starter</module>
<module>diboot-notification-starter</module>
<module>diboot-mobile-starter</module>-->
</modules>
<properties>
<java.version>1.8</java.version>
<hibernate-validator.version>6.2.5.Final</hibernate-validator.version>
<mybatis-plus.version>3.5.4</mybatis-plus.version>
<okhttp.version>4.12.0</okhttp.version>
<aspectjweaver.version>1.9.20.1</aspectjweaver.version>
<commons-io.version>2.14.0</commons-io.version>
<easyexcel.version>3.3.2</easyexcel.version>
<diboot.version>3.1.2</diboot.version>
</properties>
<dependencies>
<!-- 编译需要的依赖 -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<!-- jdk1.8要加上,1.7要去掉,否则会报错 -->
<additionalJOptions>
<additionalJOption>-Xdoclint:none</additionalJOption>
</additionalJOptions>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- GPG -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<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>
</profile>
</profiles>
</project>
1
https://gitee.com/wangxinxx/diboot-hbzx.git
git@gitee.com:wangxinxx/diboot-hbzx.git
wangxinxx
diboot-hbzx
diboot-hbzx
master

搜索帮助