thiloplanz / jmockmongo

Fake in-process (Java), in-memory MongoDB for unit testing
Apache License 2.0
35 stars 5 forks source link

Maven Central Repository #1

Open maggandalf opened 12 years ago

maggandalf commented 12 years ago

I am developing a new tool for testing nosql systems called NoSqlUnit https://github.com/lordofthejars/nosql-unit, it would be perfect if jmockmongo can be downloaded from maven central repository although it is on early stages.

thiloplanz commented 12 years ago

There is a snapshot repo over at CloudBees:

<repositories>
    <repository>
        <id>thiloplanz-snapshot</id>
        <url>http://repository-thiloplanz.forge.cloudbees.com/snapshot/</url>
    </repository>
</repositories>

 <dependency>
        <groupId>jmockmongo</groupId>
        <artifactId>jmockmongo</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <scope>test</scope>
    </dependency>

I am getting pretty close to an initial "0.0.1 release", which will get into the "release" repo there, and will then also update the docs with the Maven info.

I do not know the process or requirements for putting it up on Maven Central.

zznate commented 12 years ago

This doc is super helpful if you have not seen it yet: https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide

It's still not the most straight-forward thing to do. Feel free to ping me directly if you need help.

thiloplanz commented 12 years ago

Okay, that is a good step-by-step document how to get into Maven Central.

It seems that the current 0.0.2 release does not yet meet all the requirements, but I'll target Sonatype OSS compatibility for 0.0.3.

I hope that the CloudBees repo mentioned above works fine for you in the meantime.