geotools在什么maven仓库能找到
时间: 2024-02-11 13:06:40 浏览: 169
geotools依赖.rar
你可以在 Maven Central Repository 中找到 geotools 的依赖。你可以在你的项目的 pom.xml 文件中添加以下依赖:
```
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-main</artifactId>
<version>22.0</version>
</dependency>
```
这将在你的项目中引入 geotools 的主要依赖项。你可以根据你的需求,添加其他 geotools 的依赖项。
阅读全文