当前位置: 首页 > 工具软件 > ContentTools > 使用案例 >

pom文件使用geotools报错解决

吴伟志
2023-12-01

导入geotools相关依赖有时候报红,或者下载不全,需要改settings.xml文件
把自己的下载连接maven库注释了比如:

<mirrors>   
	<mirror>  
      <id>alimaven</id>  
      <name>aliyun maven</name>  
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>  
      <mirrorOf>central</mirrorOf>          
    </mirror>
</mirrors>    

上面只是列举了,把自己独特的那几个注释了就行。

然后在这个里面加入geotools maven仓库地址,基本都能解决了。

<profiles>  
   <profile>  
   <!--geotools maven仓库地址-->
       <!--<repositories>-->
       <!--<repository>
       <id>maven2-repository.dev.java.net</id>
       <name>Java.net repository</name>
       <url>http://download.java.net/maven/2</url>
       </repository>

       <repository>
       <id>osgeo</id>
       <name>Open Source Geospatial Foundation Repository</name>
       <url>http://download.osgeo.org/webdav/geotools/</url>
       </repository>

       <repository>
       <snapshots>
       <enabled>true</enabled>
       </snapshots>
       <id>boundless</id>
       <name>Boundless Maven Repository</name>
       <url>http://repo.boundlessgeo.com/main</url>
       </repository>
       <repository>
       <id>geolocation</id>
       <url>http://maven.geo-solutions.it/</url>
       <name>geolocation</name>
       </repository>
       </repositories>-->
 </profile>  
  </profiles>

一般就把这个重新下载好几次都不成功的依赖问题解决了。

 类似资料: