Advertisement
sanket_bodhale

maven dependancy

Feb 4th, 2016
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.06 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>org.springframework.samples.service.service</groupId>
  5.     <artifactId>mission-srtmun1</artifactId>
  6.     <version>0.0.1-SNAPSHOT</version>
  7.     <packaging>war</packaging>
  8.  
  9.     <properties>
  10.  
  11.         <!-- Generic properties -->
  12.         <java.version>1.6</java.version>
  13.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14.         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  15.  
  16.         <!-- Web -->
  17.         <jsp.version>2.2</jsp.version>
  18.         <jstl.version>1.2</jstl.version>
  19.         <servlet.version>2.5</servlet.version>
  20.  
  21.  
  22.         <!-- Spring -->
  23.         <spring-framework.version>3.2.3.RELEASE</spring-framework.version>
  24.  
  25.         <!-- Hibernate / JPA -->
  26.         <hibernate.version>4.2.1.Final</hibernate.version>
  27.  
  28.         <!-- Logging -->
  29.         <logback.version>1.0.13</logback.version>
  30.         <slf4j.version>1.7.5</slf4j.version>
  31.  
  32.         <!-- Test -->
  33.         <junit.version>4.11</junit.version>
  34.     </properties>
  35.     <dependencies>
  36.  
  37.         <!-- Spring MVC -->
  38.         <dependency>
  39.             <groupId>org.springframework</groupId>
  40.             <artifactId>spring-webmvc</artifactId>
  41.             <version>${spring-framework.version}</version>
  42.         </dependency>
  43.  
  44.         <!-- Other Web dependencies -->
  45.         <dependency>
  46.             <groupId>javax.servlet</groupId>
  47.             <artifactId>jstl</artifactId>
  48.             <version>${jstl.version}</version>
  49.         </dependency>
  50.         <dependency>
  51.             <groupId>javax.servlet</groupId>
  52.             <artifactId>servlet-api</artifactId>
  53.             <version>${servlet.version}</version>
  54.             <scope>provided</scope>
  55.         </dependency>
  56.         <dependency>
  57.             <groupId>javax.servlet.jsp</groupId>
  58.             <artifactId>jsp-api</artifactId>
  59.             <version>${jsp.version}</version>
  60.             <scope>provided</scope>
  61.         </dependency>
  62.  
  63.         <!-- Spring and Transactions -->
  64.         <!-- <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId>
  65.             <version>${spring-framework.version}</version> </dependency> -->
  66.         <!-- Logging with SLF4J & LogBack -->
  67.         <dependency>
  68.             <groupId>org.slf4j</groupId>
  69.             <artifactId>slf4j-api</artifactId>
  70.             <version>${slf4j.version}</version>
  71.             <scope>compile</scope>
  72.         </dependency>
  73.         <!-- <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId>
  74.             <version>${logback.version}</version> <scope>runtime</scope> </dependency> -->
  75.         <!-- Hibernate -->
  76.         <dependency>
  77.             <groupId>org.hibernate</groupId>
  78.             <artifactId>hibernate-entitymanager</artifactId>
  79.             <version>${hibernate.version}</version>
  80.         </dependency>
  81.  
  82.         <!-- Test Artifacts -->
  83.         <dependency>
  84.             <groupId>org.springframework</groupId>
  85.             <artifactId>spring-test</artifactId>
  86.             <version>${spring-framework.version}</version>
  87.             <scope>test</scope>
  88.         </dependency>
  89.         <dependency>
  90.             <groupId>junit</groupId>
  91.             <artifactId>junit</artifactId>
  92.             <version>${junit.version}</version>
  93.             <scope>test</scope>
  94.         </dependency>
  95.  
  96.         <dependency>
  97.             <groupId>org.springframework</groupId>
  98.             <artifactId>spring-context</artifactId>
  99.             <version>3.2.3.RELEASE</version>
  100.         </dependency>
  101.         <dependency>
  102.             <groupId>org.springframework</groupId>
  103.             <artifactId>spring-context-support</artifactId>
  104.             <version>3.2.3.RELEASE</version>
  105.         </dependency>
  106.         <dependency>
  107.             <groupId>org.apache.struts</groupId>
  108.             <artifactId>struts2-core</artifactId>
  109.             <version>2.3.20</version>
  110.         </dependency>
  111.         <dependency>
  112.             <groupId>org.apache.struts</groupId>
  113.             <artifactId>struts2-spring-plugin</artifactId>
  114.             <version>2.3.20</version>
  115.         </dependency>
  116.         <dependency>
  117.             <groupId>org.apache.struts.xwork</groupId>
  118.             <artifactId>xwork-core</artifactId>
  119.             <version>2.3.20</version>
  120.         </dependency>
  121.         <dependency>
  122.             <groupId>org.apache.maven.plugins</groupId>
  123.             <artifactId>maven-shade-plugin</artifactId>
  124.             <version>2.4.3</version>
  125.         </dependency>
  126.         <dependency>
  127.             <groupId>mysql</groupId>
  128.             <artifactId>mysql-connector-java</artifactId>
  129.             <version>5.1.34</version>
  130.         </dependency>
  131.     </dependencies>
  132. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement