Advertisement
Guest User

pom.xml

a guest
Dec 10th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.57 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>users</groupId>
  8.     <artifactId>users</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.     <dependencies>
  11.         <dependency>
  12.             <groupId>org.springframework.boot</groupId>
  13.             <artifactId>spring-boot-starter-web</artifactId>
  14.             <version>1.4.2.RELEASE</version>
  15.         </dependency>
  16.  
  17.         <dependency>
  18.             <groupId>org.springframework</groupId>
  19.             <artifactId>spring-tx</artifactId>
  20.             <version>4.3.4.RELEASE</version>
  21.         </dependency>
  22.  
  23.         <dependency>
  24.             <groupId>org.springframework</groupId>
  25.             <artifactId>spring-orm</artifactId>
  26.             <version>4.3.4.RELEASE</version>
  27.         </dependency>
  28.  
  29.         <dependency>
  30.             <groupId>org.postgresql</groupId>
  31.             <artifactId>postgresql</artifactId>
  32.             <version>9.4.1212.jre7</version>
  33.         </dependency>
  34.  
  35.         <dependency>
  36.             <groupId>org.hibernate</groupId>
  37.             <artifactId>hibernate-core</artifactId>
  38.             <version>5.2.5.Final</version>
  39.         </dependency>
  40.  
  41.         <dependency>
  42.             <groupId>org.hibernate</groupId>
  43.             <artifactId>hibernate-entitymanager</artifactId>
  44.             <version>5.2.5.Final</version>
  45.         </dependency>
  46.  
  47.         <dependency>
  48.             <groupId>commons-dbcp</groupId>
  49.             <artifactId>commons-dbcp</artifactId>
  50.             <version>1.4</version>
  51.         </dependency>
  52.  
  53.         <dependency>
  54.             <groupId>junit</groupId>
  55.             <artifactId>junit</artifactId>
  56.             <version>4.7</version>
  57.             <scope>test</scope>
  58.         </dependency>
  59.  
  60.     </dependencies>
  61.     <build>
  62.         <plugins>
  63.             <plugin>
  64.                 <groupId>org.apache.maven.plugins</groupId>
  65.                 <artifactId>maven-compiler-plugin</artifactId>
  66.                 <version>2.5.1</version>
  67.                 <configuration>
  68.                     <source>1.8</source>
  69.                     <target>1.8</target>
  70.                     <compilerArgument>-Xlint:all</compilerArgument>
  71.                     <showWarnings>true</showWarnings>
  72.                     <showDeprecation>true</showDeprecation>
  73.                 </configuration>
  74.             </plugin>
  75.         </plugins>
  76.     </build>
  77.  
  78.  
  79. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement