Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.04 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>edu.susu.crypto</groupId>
  8.     <artifactId>ThirdYearProjectMaven</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.     <dependencyManagement>
  12.         <dependencies>
  13.             <dependency>
  14.                 <groupId>org.glassfish.jersey</groupId>
  15.                 <artifactId>jersey-bom</artifactId>
  16.                 <version>2.25.1</version>
  17.                 <type>pom</type>
  18.                 <scope>import</scope>
  19.             </dependency>
  20.         </dependencies>
  21.     </dependencyManagement>
  22.  
  23.     <dependencies>
  24.         <dependency>
  25.             <groupId>org.glassfish.jersey.containers</groupId>
  26.             <artifactId>jersey-container-servlet-core</artifactId>
  27.         </dependency>
  28.     </dependencies>
  29.    
  30. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement