You are viewing a plain text version of this content. The canonical link for it is here.
Posted to droids-dev@incubator.apache.org by "Lochschmied, Alexander" <Al...@vishay.com> on 2012/09/05 16:03:35 UTC

Maven dependency

<dependency>
    <groupId>org.apache.droids</groupId>
    <artifactId>droids</artifactId>
    <version>0.2-incubating</version>
</dependency>

I'm getting error that dependecy cannot be resolved.
What am I missing?

Thanks,
Alexander

Re: Maven dependency

Posted by Tobias Rübner <to...@apache.org>.
Hi Alexander,

this dependency is available in the maven repository.
Take a look at
http://search.maven.org/#artifactdetails%7Corg.apache.droids%7Cdroids%7C0.2-incubating%7Cpom

But this will only resolve the pom of the project.
To work with droids, you should use the droids-core dependency

<dependency>
    <groupId>org.apache.droids</groupId>
    <artifactId>droids-core</artifactId>
    <version>0.2-incubating</version>
</dependency>

Tobias

On Wed, Sep 5, 2012 at 6:03 PM, Lochschmied, Alexander
<Al...@vishay.com> wrote:
> <dependency>
>     <groupId>org.apache.droids</groupId>
>     <artifactId>droids</artifactId>
>     <version>0.2-incubating</version>
> </dependency>
>
> I'm getting error that dependecy cannot be resolved.
> What am I missing?
>
> Thanks,
> Alexander