Micromata Genome Commons is a set of Java libraries to build mostly webserver based applications.
Checkout and build with maven using the root pom.
MGC is released unter the Apache 2.0 License. See https://www.apache.org/licenses/LICENSE-2.0.html
Please refer to the Wiki on GitHub.
Instead of running gradle, use mvn:
mvn -Prelease clean deploy
The maven settings file (~/m2/settings.xml
) may look like:
<settings>
<profiles>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.executable>gpg</gpg.executable>
<gpg.key>xxx</gpg.key>
<gpg.passphrase>xxx</gpg.passphrase>
</properties>
</profile>
</profiles>
<servers>
<server>
<id>ossrh</id>
<username>xxx</username>
<password>xxx</password>
</server>
</servers>
</settings>
```