1.4 How to get the library - PRIDE-Utilities/ms-data-core-api GitHub Wiki

The zip file in the releases section contains the ms-data-core-api jar file and all other required libraries.

Maven Dependency

PRIDE Utilities library can be used in Maven projects, you can include the following snippets in your Maven pom file.

   <dependency>
      <groupId>uk.ac.ebi.pride.utilities</groupId>
      <artifactId>ms-data-core-api</artifactId>
      <version>x.x.x</version>
   </dependency> 

 <!-- EBI repo -->
 <repository>
     <id>nexus-ebi-repo</id>
     <url>http://www.ebi.ac.uk/intact/maven/nexus/content/repositories/ebi-repo</url>
 </repository>

 <!-- EBI SNAPSHOT repo -->
 <snapshotRepository>
    <id>nexus-ebi-repo-snapshots</id>
    <url>http://www.ebi.ac.uk/intact/maven/nexus/content/repositories/ebi-repo-snapshots</url>
 </snapshotRepository>
``
Note: you need to change the version number to the latest version.

⚠️ **GitHub.com Fallback** ⚠️