Maven Repository

We are happy to announce that most of our software is now available from our Maven Repository. To use our tools in your application just add the following to your list of repositories in $HOME/.m2/settings.xml and Maven will automagically resolve dependencies:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<repositories>
  <repository>
    <id>sems-maven-repository-releases</id>
    <name>SEMS Maven Repo</name>
    <url>http://mvn.sems.uni-rostock.de/releases/</url>
    <layout>default</layout>
    <snapshots>
      <enabled>false</enabled>
    </snapshots>
  </repository>
  <repository>
    <id>sems-maven-repository-snapshots</id>
    <name>SEMS Maven Repo</name>
    <url>http://mvn.sems.uni-rostock.de/snapshots/</url>
    <layout>default</layout>
    <releases>
      <enabled>false</enabled>
    </releases>
  </repository>
</repositories>

If you do not have such a file or if you do not know where to add it you can:
download a sample settings.xml.

Update!

As of January 2018 we’re now releasing our software through Maven central. We also switched the group id. It is now de.uni-rostock.sbi – so update your POMs. But don’t worry, you don’t need to update all the package names, the classes are still packaged as de.unirostock.sems.*. Find our artifacts published under de.uni-rostock.sbi at Maven Central.

Moreover, our Maven repository has moved to mvn.bio.informatik.uni-rostock.de (we installed an HTTP redirect for the former URL).
However, since we’re now releasing through Maven Central there is no need to integrate our 3rd-party server anymore. So forget about the snippet above and just update the group ids of our tools ;-)

See also our Outro.