4 Star 21 Fork 10

Wayne / rain-tool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 9.68 KB
一键复制 编辑 原始数据 按行查看 历史
xiayuxiaoxiao 提交于 2024-05-26 11:26 . update db util
<?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.2.1.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<!-- <parent>-->
<!-- <groupId>org.sonatype.oss</groupId>-->
<!-- <artifactId>oss-parent</artifactId>-->
<!-- <version>7</version>-->
<!-- </parent>-->
<groupId>com.gitee.windsound</groupId>
<artifactId>rain-tool</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<!-- <name>${project.groupId}:${project.artifactId}</name>-->
<!-- <description>rain tool set</description>-->
<!-- <url>https://gitee.com/windsound/rain</url>-->
<properties>
<rain.tool.version>1.0.0</rain.tool.version>
<rain.group.name>com.gitee.windsound</rain.group.name>
<surefire.version>2.22.2</surefire.version>
<lombok.version>1.18.30</lombok.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
<!-- 许可证信息 -->
<!-- <licenses>-->
<!-- &lt;!&ndash; Apache许可证 &ndash;&gt;-->
<!-- <license>-->
<!-- <name>The Apache Software License, Version 2.0</name>-->
<!-- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>-->
<!-- </license>-->
<!-- &lt;!&ndash; MIT许可证 &ndash;&gt;-->
<!-- &lt;!&ndash; <license>-->
<!-- <name>MIT License</name>-->
<!-- <url>http://www.opensource.org/licenses/mit-license.php</url>-->
<!-- </license>&ndash;&gt;-->
<!-- </licenses>-->
<!-- &lt;!&ndash; SCM信息 -> git在github上托管 &ndash;&gt;-->
<!-- <scm>-->
<!-- <connection>scm:git:git://git@gitee.com:windsound/rain.git</connection>-->
<!-- <developerConnection>scm:git:ssh://git@gitee.com:windsound/rain.git</developerConnection>-->
<!-- <url>https://git@gitee.com:windsound/rain/tree/master</url>-->
<!-- </scm>-->
<!-- &lt;!&ndash; 开发者信息 &ndash;&gt;-->
<!-- <developers>-->
<!-- <developer>-->
<!-- <name>wayne</name>-->
<!-- <email>joneswayne@163.com</email>-->
<!-- <url>https://gitee.com/windsound</url>-->
<!-- </developer>-->
<!-- </developers>-->
<modules>
<module>rain-log-tool</module>
<module>rain-core-tool</module>
<module>rain-prop-tool</module>
<module>rain-base-tool</module>
<module>rain-mybatis-tool</module>
<module>rain-doc-tool</module>
<module>rain-mq-tool</module>
<module>rain-db-tool</module>
<module>rain-hibernate-tool</module>
<module>rain-redis-tool</module>
<module>rain-light-tool</module>
<module>rain-small-tool</module>
<module>rain-crypto-tool</module>
<module>rain-word-tool</module>
<module>rain-http-tool</module>
<module>rain-media-tool</module>
<module>rain-socket-tool</module>
<module>rain-generate-tool</module>
<module>rain-ai-tool</module>
<module>rain-analyse-tool</module>
</modules>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>compile</scope>
</dependency>
<!-- test范围是指测试范围有效,在编译和打包时都不会使用这个依赖-->
<!-- compile范围是指编译范围内有效,在编译和打包时都会将依赖存储进去-->
<!-- provided依赖,在编译和测试过程中有效,最后生成的war包时不会加入 例如:-->
<!-- servlet-api,因为servlet-api tomcat服务器已经存在了,如果再打包会冲突-->
<!-- runtime在运行时候依赖,在编译时候不依赖-->
<!-- 全局单元测试 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Greenwich.RELEASE</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.1.3.RELEASE</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<!-- &lt;!&ndash; 使用个人资料:由于生成javadoc和源jar以及使用GPG签署组件是一个相当耗时的过程,因此这些执行通常与正常的构建配置隔离并移动到配置文件中。然后,在通过激活配置文件执行部署时,将使用此配置文件。 &ndash;&gt;-->
<!-- <profiles>-->
<!-- <profile>-->
<!-- <id>ossrh</id>-->
<!-- <activation>-->
<!-- <activeByDefault>true</activeByDefault>-->
<!-- </activation>-->
<!-- <build>-->
<!-- <plugins>-->
<!-- &lt;!&ndash; 要生成Javadoc和Source jar文件,您必须配置javadoc和源Maven插件 &ndash;&gt;-->
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-source-plugin</artifactId>-->
<!-- <version>2.2.1</version>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>attach-sources</id>-->
<!-- <goals>-->
<!-- <goal>jar-no-fork</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-javadoc-plugin</artifactId>-->
<!-- <version>2.9.1</version>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>attach-javadocs</id>-->
<!-- <goals>-->
<!-- <goal>jar</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<!-- &lt;!&ndash; 必须配置GPG插件用于使用以下配置对组件进行签名 &ndash;&gt;-->
<!-- <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>-->
<!--&lt;!&ndash; <plugin>&ndash;&gt;-->
<!--&lt;!&ndash; <groupId>org.sonatype.plugins</groupId>&ndash;&gt;-->
<!--&lt;!&ndash; <artifactId>nexus-staging-maven-plugin</artifactId>&ndash;&gt;-->
<!--&lt;!&ndash; <version>1.6.7</version>&ndash;&gt;-->
<!--&lt;!&ndash; <extensions>true</extensions>&ndash;&gt;-->
<!--&lt;!&ndash; <configuration>&ndash;&gt;-->
<!--&lt;!&ndash; <serverId>ossrh</serverId>&ndash;&gt;-->
<!--&lt;!&ndash; <nexusUrl>https://oss.sonatype.org/</nexusUrl>&ndash;&gt;-->
<!--&lt;!&ndash; <autoReleaseAfterClose>true</autoReleaseAfterClose>&ndash;&gt;-->
<!--&lt;!&ndash; </configuration>&ndash;&gt;-->
<!--&lt;!&ndash; </plugin>&ndash;&gt;-->
<!-- </plugins>-->
<!-- </build>-->
<!-- &lt;!&ndash; 【注】snapshotRepository 与 repository 中的 id 一定要与 setting.xml 中 server 的 id 保持一致! &ndash;&gt;-->
<!-- <distributionManagement>-->
<!-- <snapshotRepository>-->
<!-- <id>ossrh</id>-->
<!-- <url>https://oss.sonatype.org/content/repositories/snapshots</url>-->
<!-- </snapshotRepository>-->
<!-- <repository>-->
<!-- <id>ossrh</id>-->
<!-- <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>-->
<!-- </repository>-->
<!-- </distributionManagement>-->
<!-- </profile>-->
<!-- </profiles>-->
</project>
Java
1
https://gitee.com/windsound/rain.git
git@gitee.com:windsound/rain.git
windsound
rain
rain-tool
master

搜索帮助