LC/pom.xml
whai 14973b69dd refactor: 重构项目结构并添加新功能
- 移除了 SpringCloud/GateWay 模块的全部内容
- 新增 ForJdk17 模块,包含多个子包和类文件
- 更新 pom.xml 文件,添加 slf4j 依赖
- 删除 sdoih.bpmn 文件

Changes
application.properties
bootstrap.yml
GateWayApplication.java
GateWayApplicationTests.java
K8s查询串行.java
LeetCode12.java
LeetCode167.java
LeetCode718_1.java
pom.xml
pom.xml
sdoih.bpmn
Tencent.java
导入CVM集群_CVM接口Reset限频_改为获取窗口再逐渐请求避免限制频率.java
导入容器集群_请求连接超时导致报错_采用异步中间状态处理方式先异步响应.java
请求域名兜底策略_DNS获取IP操作改成从Polaris.java
2024-11-18 21:43:57 +08:00

92 lines
2.6 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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>com.whai</groupId> <!--groupId表示当前 Maven 项目隶属的组织或公司-->
<artifactId>LeetCode</artifactId> <!--当前 Maven 项目的名称-->
<version>1.0-SNAPSHOT</version><!--定义了 Maven 项目当前所处版本-->
<packaging>pom</packaging>
<modules>
<module>ForJdk8</module>
<module>ForJdk17</module>
<module>SeleniumDemo</module>
<module>SpringCloud</module>
<module>SpringDemo</module>
</modules> <!--定义了 Maven 项目的打包方式(比如 jarwar...),默认使用 jar。-->
<!-- 依赖软件版本 -->
<properties>
<slf4j.version>1.7.30</slf4j.version>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<!-- 注意若无type为jar则报错-->
<type>jar</type>
</dependency>
<!--hutool-->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.8.13</version>
</dependency>
</dependencies>
<build>
<plugins>
<!--javadoc-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<!--maven-resource-plugin-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<!-- 'resources', 'outputDirectory'-->
<executions>
<execution>
<id>copy-resources</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/classes/</outputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>