java - Maven Import AAR Classes.jar -


i'm using intellij idea. i'm trying import couch-lite project using maven.

my pom file:

<?xml version="1.0" encoding="utf-8"?> <project xmlns="http://maven.apache.org/pom/4.0.0"      xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"      xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelversion>4.0.0</modelversion>  <groupid>*</groupid> <artifactid>*</artifactid> <version>0.1.0</version>  <repositories>     <repository>         <id>com.couchbase.lite</id>         <name>couchbase-lite</name>         <url>http://files.couchbase.com/maven2/</url>     </repository> </repositories>  <dependencies>     <dependency>         <groupid>com.couchbase.lite</groupid>         <artifactid>couchbase-lite-android</artifactid>         <version>1.0.0</version>         <type>aar</type>     </dependency> </dependencies> 

the result:

enter image description here

as can see, can't access classes.jar of aar library. have idea how can reference files in jar?

i'm using gradle build project. build times longer, libraries being loaded correctly.


Comments

Popular posts from this blog

ios - Change Storyboard View using Seague -

inversion of control - Autofac named registration constructor injection -

verilog - Systemverilog dynamic casting issues -