Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.28 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>zesp03</groupId>
  8.     <artifactId>network-monitor-server</artifactId>
  9.     <version>1.0</version>
  10.  
  11.     <properties>
  12.         <maven.compiler.source>1.8</maven.compiler.source>
  13.         <maven.compiler.target>1.8</maven.compiler.target>
  14.     </properties>
  15.  
  16.     <dependencies>
  17.         <dependency>
  18.             <groupId>javax.servlet</groupId>
  19.             <artifactId>javax.servlet-api</artifactId>
  20.             <version>3.1.0</version>
  21.         </dependency>
  22.         <dependency>
  23.             <groupId>mysql</groupId>
  24.             <artifactId>mysql-connector-java</artifactId>
  25.             <version>5.1.40</version>
  26.         </dependency>
  27.         <dependency>
  28.             <groupId>junit</groupId>
  29.             <artifactId>junit</artifactId>
  30.             <version>4.12</version>
  31.             <scope>test</scope>
  32.         </dependency>
  33.         <dependency>
  34.             <groupId>jstl</groupId>
  35.             <artifactId>jstl</artifactId>
  36.             <version>1.2</version>
  37.         </dependency>
  38.         <dependency>
  39.             <groupId>org.hibernate</groupId>
  40.             <artifactId>hibernate-core</artifactId>
  41.             <version>5.2.6.Final</version>
  42.         </dependency>
  43.         <dependency>
  44.             <groupId>org.hibernate</groupId>
  45.             <artifactId>hibernate-hikaricp</artifactId>
  46.             <version>5.2.6.Final</version>
  47.         </dependency>
  48.         <dependency>
  49.             <groupId>org.slf4j</groupId>
  50.             <artifactId>slf4j-log4j12</artifactId>
  51.             <version>1.7.21</version>
  52.         </dependency>
  53.         <dependency>
  54.             <groupId>org.glassfish.jersey.containers</groupId>
  55.             <artifactId>jersey-container-servlet</artifactId>
  56.             <version>2.25.1</version>
  57.         </dependency>
  58.         <dependency>
  59.             <groupId>org.glassfish.jersey.media</groupId>
  60.             <artifactId>jersey-media-json-jackson</artifactId>
  61.             <version>2.25.1</version>
  62.         </dependency>
  63.     </dependencies>
  64.  
  65. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement