Skip to content
Snippets Groups Projects
Name Last commit Last update
README.md

vips-package-registry

This gitlab project will serve as a package registry for common VIPS artifacts.

Maven projects

To pull artifacts from vips-package-registry, include the following section in pom.xml:

    <repositories>
        <repository>
            <id>gitlab-maven</id>
            <url>https://gitlab.nibio.no/api/v4/projects/401/packages/maven</url>
        </repository>
    </repositories>

To push artifacts to vips-package-registry, include the following section in pom.xml:

    <distributionManagement>
        <repository>
            <id>gitlab-maven</id>
            <url>https://gitlab.nibio.no/api/v4/projects/401/packages/maven</url>
        </repository>
        <snapshotRepository>
            <id>gitlab-maven</id>
            <url>https://gitlab.nibio.no/api/v4/projects/401/packages/maven</url>
        </snapshotRepository>
    </distributionManagement>