mrchebik

Untitled

Aug 27th, 2016
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 6.22 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.  
  6.     <groupId>ru.mrchebik</groupId>
  7.     <artifactId>notes</artifactId>
  8.     <version>1.0-SNAPSHOT</version>
  9.     <packaging>war</packaging>
  10.     <name>Notes</name>
  11.     <url>http://maven.apache.org</url>
  12.  
  13.     <dependencies>
  14.         <!-- Others -->
  15.         <dependency>
  16.             <groupId>com.fasterxml.jackson.core</groupId>
  17.             <artifactId>jackson-databind</artifactId>
  18.             <version>2.8.0</version>
  19.         </dependency>
  20.         <dependency>
  21.             <groupId>org.hamcrest</groupId>
  22.             <artifactId>hamcrest-library</artifactId>
  23.             <version>1.3</version>
  24.         </dependency>
  25.         <dependency>
  26.             <groupId>org.hamcrest</groupId>
  27.             <artifactId>hamcrest-core</artifactId>
  28.             <version>1.3</version>
  29.         </dependency>
  30.         <dependency>
  31.             <groupId>commons-collections</groupId>
  32.             <artifactId>commons-collections</artifactId>
  33.             <version>3.2.1</version>
  34.         </dependency>
  35.         <dependency>
  36.             <groupId>org.codehaus.jackson</groupId>
  37.             <artifactId>jackson-mapper-asl</artifactId>
  38.             <version>1.9.13</version>
  39.         </dependency>
  40.         <dependency>
  41.             <groupId>org.slf4j</groupId>
  42.             <artifactId>slf4j-api</artifactId>
  43.             <version>1.7.21</version>
  44.         </dependency>
  45.         <dependency>
  46.             <groupId>antlr</groupId>
  47.             <artifactId>antlr</artifactId>
  48.             <version>2.7.7</version>
  49.         </dependency>
  50.         <!-- Tomcat -->
  51.         <dependency>
  52.             <groupId>org.apache.tomcat</groupId>
  53.             <artifactId>tomcat-jdbc</artifactId>
  54.             <version>9.0.0.M6</version>
  55.         </dependency>
  56.         <!-- Spring Framework -->
  57.         <dependency>
  58.             <groupId>org.springframework</groupId>
  59.             <artifactId>spring-webmvc</artifactId>
  60.             <version>4.3.2.RELEASE</version>
  61.         </dependency>
  62.         <dependency>
  63.             <groupId>org.springframework</groupId>
  64.             <artifactId>spring-tx</artifactId>
  65.             <version>4.3.2.RELEASE</version>
  66.         </dependency>
  67.         <dependency>
  68.             <groupId>org.springframework</groupId>
  69.             <artifactId>spring-test</artifactId>
  70.             <version>4.3.2.RELEASE</version>
  71.         </dependency>
  72.         <!-- Hibernate -->
  73.         <dependency>
  74.             <groupId>org.hibernate</groupId>
  75.             <artifactId>hibernate-core</artifactId>
  76.             <version>3.6.9.Final</version>
  77.         </dependency>
  78.         <dependency>
  79.             <groupId>org.hibernate</groupId>
  80.             <artifactId>hibernate-annotations</artifactId>
  81.             <version>RELEASE</version>
  82.         </dependency>
  83.         <dependency>
  84.             <groupId>org.hibernate</groupId>
  85.             <artifactId>hibernate-validator</artifactId>
  86.             <version>3.1.0.GA</version>
  87.         </dependency>
  88.         <dependency>
  89.             <groupId>org.hibernate</groupId>
  90.             <artifactId>hibernate-tools</artifactId>
  91.             <version>3.2.4.GA</version>
  92.         </dependency>
  93.         <dependency>
  94.             <groupId>javassist</groupId>
  95.             <artifactId>javassist</artifactId>
  96.             <version>3.12.1.GA</version>
  97.         </dependency>
  98.         <!-- MySQL -->
  99.         <dependency>
  100.             <groupId>mysql</groupId>
  101.             <artifactId>mysql-connector-java</artifactId>
  102.             <version>5.1.39</version>
  103.         </dependency>
  104.         <!-- Servlets API -->
  105.         <dependency>
  106.             <groupId>javax.servlet</groupId>
  107.             <artifactId>servlet-api</artifactId>
  108.             <version>RELEASE</version>
  109.             <scope>provided</scope>
  110.         </dependency>
  111.         <dependency>
  112.             <groupId>org.apache.geronimo.specs</groupId>
  113.             <artifactId>geronimo-servlet_3.0_spec</artifactId>
  114.             <version>1.0</version>
  115.             <scope>test</scope>
  116.         </dependency>
  117.         <!-- JSP -->
  118.         <dependency>
  119.             <groupId>jstl</groupId>
  120.             <artifactId>jstl</artifactId>
  121.             <version>1.2</version>
  122.         </dependency>
  123.         <dependency>
  124.             <groupId>taglibs</groupId>
  125.             <artifactId>standard</artifactId>
  126.             <version>1.1.2</version>
  127.         </dependency>
  128.         <!-- JUnit -->
  129.         <dependency>
  130.             <groupId>junit</groupId>
  131.             <artifactId>junit</artifactId>
  132.             <version>4.8.2</version>
  133.             <scope>test</scope>
  134.         </dependency>
  135.         <!-- Mockito -->
  136.         <dependency>
  137.             <groupId>org.mockito</groupId>
  138.             <artifactId>mockito-all</artifactId>
  139.             <version>RELEASE</version>
  140.         </dependency>
  141.     </dependencies>
  142.  
  143.     <build>
  144.         <finalName>Notes</finalName>
  145.         <plugins>
  146.             <plugin>
  147.                 <groupId>org.apache.maven.plugins</groupId>
  148.                 <artifactId>maven-compiler-plugin</artifactId>
  149.                 <configuration>
  150.                     <source>1.8</source>
  151.                     <target>1.8</target>
  152.                 </configuration>
  153.             </plugin>
  154.             <plugin>
  155.                 <groupId>org.apache.tomcat.maven</groupId>
  156.                 <artifactId>tomcat7-maven-plugin</artifactId>
  157.                 <version>2.2</version>
  158.                 <configuration>
  159.                     <url>http://localhost:8080/manager/text</url>
  160.                     <path>/</path>
  161.                     <username>admin</username>
  162.                     <password>password</password>
  163.                 </configuration>
  164.             </plugin>
  165.             <plugin>
  166.                 <groupId>org.apache.maven.plugins</groupId>
  167.                 <artifactId>maven-war-plugin</artifactId>
  168.                 <version>2.6</version>
  169.                 <configuration>
  170.                     <failOnMissingWebXml>false</failOnMissingWebXml>
  171.                 </configuration>
  172.             </plugin>
  173.         </plugins>
  174.     </build>
  175.  
  176. </project>
Advertisement
Add Comment
Please, Sign In to add comment