diff --git a/README.md b/README.md index 5cd948d..896cf60 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # JNA-InChI -Wrapper to access InChI from Java. This is a work in progress to wrap the latest version of [InChI](https://www.inchi-trust.org/) (1.06) using [JNA](https://github.com/java-native-access/jna). A simple native Java interface can then be used to call InChI. +Wrapper to access InChI from Java. This wraps the latest version of [InChI](https://www.inchi-trust.org/) (1.06) using [JNA](https://github.com/java-native-access/jna). A simple native Java interface can then be used to call InChI. Java 8 or higher is required. ## Examples @@ -45,7 +45,7 @@ The simplest way to use the library is with: io.github.dan2097 jna-inchi-all - x.y + 1.0 ``` which includes binaries for most common platforms and support for converting SMILES to InChI/InChIKey. diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md new file mode 100644 index 0000000..31a837e --- /dev/null +++ b/RELEASE-NOTES.md @@ -0,0 +1,4 @@ +# JNA-InChI Release Notes + +## v1.0 (2021-12-13) +* Initial release with support for InChI 1.06 on Linux (x86/x86-64/ARM), Mac (ARM64/x86-64) and Windows (x86/x86-64) diff --git a/pom.xml b/pom.xml index abc1c27..c0bfeed 100644 --- a/pom.xml +++ b/pom.xml @@ -36,6 +36,16 @@ scm:git:https://github.com/dan2097/jna-inchi + + + ossrh + https://s01.oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ + + UTF-8 @@ -47,8 +57,8 @@ - + org.apache.maven.plugins maven-compiler-plugin 3.8.1 @@ -57,14 +67,11 @@ 1.8 - + org.apache.maven.plugins maven-javadoc-plugin - 3.3.0 - - 8 - + 3.3.1 org.apache.maven.plugins @@ -90,7 +97,71 @@ + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + forked-path + false + ${arguments} -Psonatype-oss-release + + + + + + + + sonatype-oss-release + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.1 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.2.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 3.0.1 + + + sign-artifacts + verify + + sign + + + + + + + +