Advertisement
Guest User

Untitled

a guest
Aug 29th, 2018
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.70 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4.  
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>com.pbs.web.jdbc</groupId>
  8.     <artifactId>ParkingBookSystem</artifactId>
  9.     <packaging>war</packaging>
  10.     <version>0.0.1-SNAPSHOT</version>
  11.     <name>ParkingBookSystem</name>
  12.  
  13.     <build>
  14.         <finalName>ParkingSystem</finalName>
  15.         <plugins>
  16.             <plugin>
  17.                 <groupId>org.apache.maven.plugins</groupId>
  18.                 <artifactId>maven-compiler-plugin</artifactId>
  19.                 <version>2.5.1</version>
  20.                 <inherited>true</inherited>
  21.                 <configuration>
  22.                     <source>1.7</source>
  23.                     <target>1.7</target>
  24.                 </configuration>
  25.             </plugin>
  26.         </plugins>
  27.     </build>
  28.  
  29.     <dependencyManagement>
  30.         <dependencies>
  31.             <dependency>
  32.                 <groupId>org.glassfish.jersey</groupId>
  33.                 <artifactId>jersey-bom</artifactId>
  34.                 <version>${jersey.version}</version>
  35.                 <type>pom</type>
  36.                 <scope>import</scope>
  37.             </dependency>
  38.         </dependencies>
  39.     </dependencyManagement>
  40.  
  41.     <dependencies>
  42.         <dependency>
  43.             <groupId>javax.servlet</groupId>
  44.             <artifactId>javax.servlet-api</artifactId>
  45.             <version>3.0.1</version>
  46.             <type>jar</type>
  47.         </dependency>
  48.         <dependency>
  49.             <groupId>javax.servlet.jsp.jstl</groupId>
  50.             <artifactId>javax.servlet.jsp.jstl-api</artifactId>
  51.             <version>1.2.2</version>
  52.         </dependency>
  53.         <dependency>
  54.             <groupId>org.glassfish.hk2</groupId>
  55.             <artifactId>hk2-api</artifactId>
  56.             <version>2.5.0-b42</version>
  57.         </dependency>
  58.         <dependency>
  59.             <groupId>org.glassfish.jersey.containers</groupId>
  60.             <artifactId>jersey-container-servlet-core</artifactId>
  61.             <!-- use the following artifactId if you don't need servlet 2.x compatibility -->
  62.             <!-- artifactId>jersey-container-servlet</artifactId -->
  63.         </dependency>
  64.         <dependency>
  65.             <groupId>org.glassfish.jersey.inject</groupId>
  66.             <artifactId>jersey-hk2</artifactId>
  67.         </dependency>
  68.         <dependency>
  69.             <groupId>org.glassfish.jersey.media</groupId>
  70.             <artifactId>jersey-media-json-binding</artifactId>
  71.         </dependency>
  72.         <dependency>
  73.             <groupId>mysql</groupId>
  74.             <artifactId>mysql-connector-java</artifactId>
  75.             <version>5.1.38</version>
  76.         </dependency>
  77.         <dependency>
  78.             <groupId>com.fasterxml.jackson.core</groupId>
  79.             <artifactId>jackson-databind</artifactId>
  80.             <version>2.5.3</version>
  81.         </dependency>
  82.         <dependency>
  83.             <groupId>javax.servlet</groupId>
  84.             <artifactId>jstl</artifactId>
  85.             <version>1.2</version>
  86.         </dependency>
  87.     </dependencies>
  88.  
  89.     <properties>
  90.         <jersey.version>2.27</jersey.version>
  91.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  92.     </properties>
  93. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement