|
Downloads:
MzJava 1.1 requires Java 1.7 or higher.
Stable Version Download:
Daily Build Download:
For downloading the daily version of Mzjava use this link to the ftp folder.
Source code repository:
MzJava code is available on Bitbucket : https://bitbucket.org/sib-pig/mzjava
Building With Maven
To include MzJava in a Maven project, add the following lines to the pom.xml file.
<project>
...
<dependencies>
<!-- To include the proteomic module -->
<dependency>
<groupId>org.expasy.mzjava</groupId>
<artifactId>mzjava-proteomics</artifactId>
<version>1.1.0</version>
</dependency>
<!-- To include the hadoop proteomic module -->
<dependency>
<groupId>org.expasy.mzjava</groupId>
<artifactId>mzjava-hadoop-proteomics</artifactId>
<version>1.1.0</version>
</dependency>
<!-- To include the glycomics module -->
<dependency>
<groupId>org.expasy.mzjava</groupId>
<artifactId>mzjava-glycomics</artifactId>
<version>1.1.0</version>
</dependency>
<!-- To include the hadoop glycomics module -->
<dependency>
<groupId>org.expasy.mzjava</groupId>
<artifactId>mzjava-hadoop-glycomics</artifactId>
<version>1.1.0</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>Expasy MzJava</id>
<url>http://mzjava.expasy.org/maven</url>
</repository>
</repositories>
</project>
|
|
|
|
|
|