赞
踩
项目中使用了一些geotools的低版本包,在项目打包部署时经常下载失败
<dependency> <groupId>org.geotools</groupId> <artifactId>gt-geojson</artifactId> <version>${geotools.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.geotools/gt-main --> <dependency> <groupId>org.geotools</groupId> <artifactId>gt-main</artifactId> <version>${geotools.version}</version> </dependency> <dependency> <groupId>org.geotools</groupId> <artifactId>gt-api</artifactId> <version>${geotools.version}</version> </dependency>
研究发现maven repository 不稳定导致,更换repository 地址,搞定!!!
<repository>
<id>osgeo</id>
<name>Open Source Geospatial Foundation Repository</name>
<url>https://repo.osgeo.org/repository/release/</url>
</repository>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。