编辑
2026-01-18
笔记
00
请注意,本文编写于 54 天前,最后修改于 54 天前,其中某些信息可能已经过时。

Maven 工程配置阿里云镜像

xml
<?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.caibh</groupId> <artifactId>order-analyzer</artifactId> <version>1.0.0</version> <name>order-analyzer</name> <description>快递订单分析助手</description> <!-- ...... --> <repositories> <repository> <id>public</id> <name>AliYun public repository</name> <url>https://maven.aliyun.com/repository/public/</url> <releases> <enabled>true</enabled> </releases> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>public</id> <name>AliYun public plugin repository</name> <url>https://maven.aliyun.com/repository/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories> </project>

本文作者:菜宝熊

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!