我在将 jar 文件提供给 maven 3 构建过程时遇到问题
我已将 jar 文件 gwt-openlayers-server-1.0-SNAPSHOT.jar 部署到 libs-snapshot-local
我可以使用 Artifacts 选项卡中的常规查找找到这个 jar 文件,它显示为
<dependency>
<groupId>org.gwtopenmaps.openlayers</groupId>
<artifactId>gwt-openlayers-server</artifactId>
<version>1.0-20130320.151820-1</version>
</dependency>
所以我知道神器有它。
当我尝试使用带有以下部分的 pom 进行构建时
<dependency>
<groupId>org.gwtopenmaps.openlayers</groupId>
<artifactId>gwt-openlayers-server</artifactId>
<version>1.0-SNAPSHOT</version>
我收到一个关于无法找到 gwt-openlater-server 的诊断的构建错误,请参阅清单。
我不明白为什么我有这个问题,神器有文件!
我正在使用 mvn -U compile
有什么建议么