Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm coming from iOS development world and was pretty happy with CocoaPods (which is like Bundler in the ruby world).

Now on Android development I'm struggling a bit to find something comparable. I just started using Maven successfully and setup a local maven repository with Nexus, I can easily specify dependencies like roboguice without a problem in my project's pom.xml:

<dependencies>
    <dependency>
        <groupId>org.roboguice</groupId>
        <artifactId>roboguice</artifactId>
        <version>2.0</version>
    </dependency>
</dependencies>

Which is exactly what I want, but here's the catch: How can I add a dependency (= upload an artifact) to my local Nexus repository, which wasn't meant to work with maven in the first place and isn't available via any of the public maven repositories.

I envision something like the podfiles from Cocoapods. These files are lightweight specifications which describes the dependencies I later reference from my project. I suppose I've to write such a specification as custom pom.xml for my dependencies but I have no clue how to deploy them afterwards to my local maven repository server (= Nexus).

share|improve this question

1 Answer

up vote 1 down vote accepted

Nexus supports manual uploads to hosted repositories that allows you to do just that. Read more about it in the official documentation at http://www.sonatype.com/books/nexus-book/reference/using-sect-uploading.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.