Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. <properties>
  2. <org.springframework.version>4.2.2.RELEASE</org.springframework.version>
  3. </properties>
  4.  
  5. <dependencies>
  6.  
  7. <dependency>
  8. <groupId>org.apache.logging.log4j</groupId>
  9. <artifactId>log4j-core</artifactId>
  10. <version>2.4.1</version>
  11. </dependency>
  12.  
  13. <dependency>
  14. <groupId>javax.servlet</groupId>
  15. <artifactId>javax.servlet-api</artifactId>
  16. <version>3.1.0</version>
  17. </dependency>
  18.  
  19. <dependency>
  20. <groupId>commons-dbcp</groupId>
  21. <artifactId>commons-dbcp</artifactId>
  22. <version>1.4</version>
  23. </dependency>
  24.  
  25. <dependency>
  26. <groupId>org.aspectj</groupId>
  27. <artifactId>aspectjweaver</artifactId>
  28. <version>1.8.7</version>
  29. </dependency>
  30.  
  31.  
  32.  
  33. <dependency>
  34. <groupId>org.glassfish.web</groupId>
  35. <artifactId>javax.servlet.jsp.jstl</artifactId>
  36. <version>1.2.4</version>
  37.  
  38. <exclusions>
  39. <exclusion>
  40. <groupId>javax.servlet</groupId>
  41. <artifactId>servlet-api</artifactId>
  42. </exclusion>
  43. <exclusion>
  44. <groupId>javax.servlet.jsp</groupId>
  45. <artifactId>jsp-api</artifactId>
  46. </exclusion>
  47. </exclusions>
  48. </dependency>
  49.  
  50. <dependency>
  51. <groupId>mysql</groupId>
  52. <artifactId>mysql-connector-java</artifactId>
  53. <version>5.1.37</version>
  54. </dependency>
  55.  
  56. <dependency>
  57. <groupId>org.springframework</groupId>
  58. <artifactId>spring-core</artifactId>
  59. <version>${org.springframework.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework</groupId>
  63. <artifactId>spring-context-support</artifactId>
  64. <version>${org.springframework.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring-web</artifactId>
  69. <version>${org.springframework.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework</groupId>
  73. <artifactId>spring-jdbc</artifactId>
  74. <version>${org.springframework.version}</version>
  75. </dependency>
  76.  
  77. <dependency>
  78. <groupId>org.springframework</groupId>
  79. <artifactId>spring-webmvc</artifactId>
  80. <version>${org.springframework.version}</version>
  81. </dependency>
  82.  
  83. <dependency>
  84. <groupId>org.hibernate</groupId>
  85. <artifactId>hibernate-core</artifactId>
  86. <version>4.3.7.Final</version>
  87. </dependency>
  88.  
  89. <dependency>
  90. <groupId>javax.validation</groupId>
  91. <artifactId>validation-api</artifactId>
  92. <version>1.1.0.Final</version>
  93. </dependency>
  94.  
  95. <dependency>
  96. <groupId>org.hibernate</groupId>
  97. <artifactId>hibernate-validator</artifactId>
  98. <version>5.1.3.Final</version>
  99. </dependency>
  100.  
  101. <dependency>
  102. <groupId>org.mybatis</groupId>
  103. <artifactId>mybatis</artifactId>
  104. <version>3.3.0</version>
  105. </dependency>
  106.  
  107. <dependency>
  108. <groupId>org.mybatis</groupId>
  109. <artifactId>mybatis-spring</artifactId>
  110. <version>1.2.3</version>
  111. </dependency>
  112.  
  113. <dependency>
  114. <groupId>junit</groupId>
  115. <artifactId>junit</artifactId>
  116. <version>4.12</version>
  117. <scope>test</scope>
  118. </dependency>
  119.  
  120. <dependency>
  121. <groupId>org.springframework</groupId>
  122. <artifactId>spring-test</artifactId>
  123. <version>${org.springframework.version}</version>
  124. <scope>test</scope>
  125. </dependency>
  126.  
  127. </dependencies>
  128. <build>
  129. <plugins>
  130. <plugin>
  131. <artifactId>maven-compiler-plugin</artifactId>
  132. <configuration>
  133. <source>1.8</source>
  134. <target>1.8</target>
  135. </configuration>
  136. </plugin>
  137. </plugins>
  138. <finalName>SimpleBlogMaven</finalName>
  139. </build>
  140. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement