OpenNTF / org.openntf.domino

Open replacement for lotus.domino package in HCL Domino
Apache License 2.0
65 stars 34 forks source link

Deploy to Maven Central #163

Closed mattcg closed 6 years ago

mattcg commented 6 years ago

In order to facilitate use of this library in a file parsing/forensics framework like Apache Tika, would it be possible to deploy the domino module to Maven Central?

paulswithers commented 6 years ago

We have it deployed to OpenNTF Artifactory. Just add this to your pom.xml

`

org.openntf.domino https://artifactory.openntf.org/openntf/
</repositories>`

Then

`

org.openntf.domino
        <artifactId>org.openntf.domino</artifactId>
        <version>${oda-version}</version>
    </dependency>`

I usually keep my version number in a variable, it seems to be standard from what I've seen of other poms. So in properties I have <oda-version>4.0.0-SNAPSHOT</oda-version>.

Unfortunately to build automatically via Bamboo and deploy to Artifactory, it needs to Domino Update Site for Build Management project of the relevant release version. We're still waiting for official versions of FP8 and FP9, so 4.0.0-SNAPSHOT is the latest, which covers up to and including 9.0.1 FP7. I've raised the issue with IBM, hopefully we can get a version soon. I'll keep this updated.

mattcg commented 6 years ago

Thank you, this works for now!