Maven拒绝从远程存储库下载aar打包的依赖项
问题内容:
我想在我的Java程序中使用这个android依赖项:
http://jcenter.bintray.com/com/o3dr/android/dronekit-android/2.9.0/
所以我将所有插件和存储库添加到了我的maven pom文件中:
<repositories>
<repository>
<id>central</id>
<name>bintray</name>
<url>http://jcenter.bintray.com</url>
<!--<snapshots>-->
<!--<enabled>false</enabled>-->
<!--</snapshots>-->
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<!--<snapshots>-->
<!--<enabled>false</enabled>-->
<!--</snapshots>-->
<id>central</id>
<name>bintray-plugins</name>
<url>http://jcenter.bintray.com</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>com.simpligility.maven.plugins</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>4.1.0</version>
<extensions>true</extensions>
<configuration>
<sign>
<debug>false</debug>
</sign>
</configuration>
</plugin>
...
然后,将依赖项添加到同一文件中:
<dependency>
<groupId>com.o3dr.android</groupId>
<artifactId>dronekit-android</artifactId>
<version>2.9.0</version>
<type>aar</type>
</dependency>
但是没有任何反应,maven会忽略它,好像它不存在一样,如果我将其主包导入scala文件并使用构建它mvn clear install -U
,则会收到此错误:
[错误] /home/peng/git-
drone/dronespike/src/main/scala/Main.scala:1:对象o3dr不是com包的成员。
[错误]导入com.o3dr.android._
[错误] ^
问题 :我该怎么做才能解决此问题?
问题答案: