OpenConext / Mujina

A mock IDP and SP using the OpenSAML library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Availability in maven central?

mattsheppard opened this issue · comments

Is the any possibility of having Mujina available in maven central (to allow developers to depend on it without having to build and install it locally)?

I've been through the (admittedly kinda painful) process once or twice and would be happy to assist if needed - http://central.sonatype.org/pages/ossrh-guide.html

We publish all OpenConext artefacts - including Mujina - to the OpenConext public available repositories:

<repositories>
     <repository>
            <id>openconext-releases</id>
            <name>OpenConext public releases repository</name>
            <url>https://build.openconext.org/repository/public/releases</url>
        </repository>
        <snapshotRepository>
            <id>openconext-snapshots</id>
            <name>OpenConext public snapshot repository</name>
            <url>https://build.openconext.org/repository/public/snapshots</url>
        </snapshotRepository>
</repositories>

You can either add them in your pom.xml file or globally in your ~/.m2/settings.xml.

Ah, great - That'll do fine - Thanks!