【Java】Maven仓库-配置备份
程序员文章站
2022-06-28 20:19:27
一、假设1、假设项目使用Java2、假设项目使用Maven3、假设你需要Maven全局仓库与定制化资源配置二、全局配置(settings.xml)F:/java/.m nexus-aliyun central &...
一、假设
1、假设项目使用Java
2、假设项目使用Maven
3、假设你需要Maven全局仓库与定制化资源配置
二、全局配置(settings.xml)
<localRepository>F:/java/.m</localRepository>
<mirrors>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
<mirror>
<id> maven-net-cn</id>
<name> Maven China Mirror</name>
<url>http://maven.net.cn/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<id>center</id>
<name>Maven center</name>
<url>https://repo1.maven.org/maven2/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
三、项目配置(pom.xml)
1、常用阿里(aliyun)
<repository>
<id>public</id>
<url>https://maven.aliyun.com/repository/public</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
2、空间位置(GeoTools)
<repository>
<id>osgeo</id>
<name>OSGeo Release Repository</name>
<url>https://repo.osgeo.org/repository/release/</url>
<snapshots><enabled>false</enabled></snapshots>
<releases><enabled>true</enabled></releases>
</repository>
<repository>
<id>osgeo-snapshot</id>
<name>OSGeo Snapshot Repository</name>
<url>https://repo.osgeo.org/repository/snapshot/</url>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
</repository>
3、空间位置(ArcGIS)
<repository>
<id>esri</id>
<url>https://esri.bintray.com/arcgis</url>
</repository>
本文地址:https://blog.csdn.net/myloverisxin/article/details/112601979
推荐阅读
-
maven多仓库配置 公司仓库和阿里仓库
-
Java全栈程序员之08:MAVEN+JAVA配置
-
java和maven环境变量配置----windows和linux
-
maven配置时报错NB: JAVA_HOME should point to a JDK not a JRE**解决方法
-
Eclipse Maven仓库阿里云镜像配置
-
Eclipse配置Maven的本地仓库和阿里云镜像
-
Maven 仓库 修改镜像为阿里云*仓库镜像 eclipse配置 Spring Boot 项目配置
-
Maven的安装及配置、Maven在Eclipse中的配置,Maven 仓库阿里云镜像配置
-
Eclipse配置Maven阿里云镜像仓库
-
在Mac下安装和配置Maven(添加阿里云镜像仓库、配置到IDEA)