maven私有包的问题
@廖凯 你好,想跟你请教个问题:
你好,我最近要使用android.content.res.AXmlResourceParser这个类,没有在maven车库找到这个APKParser.jar包,就往oschina的maven上传了一个,
<dependency>
<groupId>android.content.res</groupId>
<artifactId>AXmlResourceParser</artifactId>
<version>1</version>
</dependency>
在项目中使用:
<repository>
<id>nexus</id>
<name>local private nexus</name>
<url>http://maven.oschina.net/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<pluginRepositories>
<pluginRepository>
<id>nexus</id>
<name>local private nexus</name>
<url>http://maven.oschina.net/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
但是,无法下载到这个jar,是什么原因啊
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
把本地库中的相关包目录删掉,重新下载一次
我刚用您的pom测试了一下,可以down下来这个包
图中画红线部分