代码拉取完成,页面将自动刷新
<?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>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<!-- 许可证信息 -->
<!-- <licenses>-->
<!-- <!– Apache许可证 –>-->
<!-- <license>-->
<!-- <name>The Apache Software License, Version 2.0</name>-->
<!-- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>-->
<!-- </license>-->
<!-- <!– MIT许可证 –>-->
<!-- <!– <license>-->
<!-- <name>MIT License</name>-->
<!-- <url>http://www.opensource.org/licenses/mit-license.php</url>-->
<!-- </license>–>-->
<!-- </licenses>-->
<!-- <!– SCM信息 -> git在github上托管 –>-->
<!-- <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>-->
<!-- <!– 开发者信息 –>-->
<!-- <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-media-tool</module>
<module>rain-http-tool</module>
<module>rain-ai-tool</module>
<module>rain-mybatis-tool</module>
<module>rain-base-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-socket-tool</module>
<module>rain-generate-tool</module>
<module>rain-analyse-tool</module>
</modules>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>compile</scope>
<optional>true</optional>
</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</groupId>
<artifactId>spring-web</artifactId>
<version>5.3.39</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
</dependency>
</dependencies>
<!-- <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>
<!-- <!– 使用个人资料:由于生成javadoc和源jar以及使用GPG签署组件是一个相当耗时的过程,因此这些执行通常与正常的构建配置隔离并移动到配置文件中。然后,在通过激活配置文件执行部署时,将使用此配置文件。 –>-->
<!-- <profiles>-->
<!-- <profile>-->
<!-- <id>ossrh</id>-->
<!-- <activation>-->
<!-- <activeByDefault>true</activeByDefault>-->
<!-- </activation>-->
<!-- <build>-->
<!-- <plugins>-->
<!-- <!– 要生成Javadoc和Source jar文件,您必须配置javadoc和源Maven插件 –>-->
<!-- <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>-->
<!-- <!– 必须配置GPG插件用于使用以下配置对组件进行签名 –>-->
<!-- <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>-->
<!--<!– <plugin>–>-->
<!--<!– <groupId>org.sonatype.plugins</groupId>–>-->
<!--<!– <artifactId>nexus-staging-maven-plugin</artifactId>–>-->
<!--<!– <version>1.6.7</version>–>-->
<!--<!– <extensions>true</extensions>–>-->
<!--<!– <configuration>–>-->
<!--<!– <serverId>ossrh</serverId>–>-->
<!--<!– <nexusUrl>https://oss.sonatype.org/</nexusUrl>–>-->
<!--<!– <autoReleaseAfterClose>true</autoReleaseAfterClose>–>-->
<!--<!– </configuration>–>-->
<!--<!– </plugin>–>-->
<!-- </plugins>-->
<!-- </build>-->
<!-- <!– 【注】snapshotRepository 与 repository 中的 id 一定要与 setting.xml 中 server 的 id 保持一致! –>-->
<!-- <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>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。