Advertisement
Vzzarr

Untitled

Oct 31st, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.04 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>uk.ac.ncl</groupId>
  5.     <artifactId>GATKpipe</artifactId>
  6.     <version>0.0.1-SNAPSHOT</version>
  7.     <repositories>
  8.         <repository>
  9.             <id>central</id>
  10.             <name>Maven Repository Switchboard</name>
  11.             <layout>default</layout>
  12.             <url>http://repo1.maven.org/maven2</url>
  13.             <snapshots>
  14.                 <enabled>false</enabled>
  15.             </snapshots>
  16.         </repository>
  17.         <repository>
  18.             <id>snapshots</id>
  19.             <snapshots>
  20.                 <enabled>true</enabled>
  21.             </snapshots>
  22.             <name>libs-snapshot</name>
  23.             <url>https://broadinstitute.jfrog.io/broadinstitute/libs-snapshot</url>
  24.         </repository>
  25.     </repositories>
  26.     <dependencies>
  27.         <dependency>
  28.             <groupId>org.broadinstitute</groupId>
  29.             <artifactId>gatk</artifactId>
  30.             <version>4.beta.6-18-g2ee7724-20171025.162137-1</version>
  31.         </dependency>
  32.     </dependencies>
  33. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement