-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
138 lines (109 loc) · 4.63 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.shasm.testqube</groupId>
<artifactId>TestQube</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>TestQube Maven Webapp</name>
<url>http://maven.apache.org</url>
<properties>
<hibernate.version>4.3.8.Final</hibernate.version>
<spring.version>4.1.5.RELEASE</spring.version>
<spring.security.version>3.2.5.RELEASE</spring.security.version>
</properties>
<dependencies>
<!--************************************ 1 START: Mandatory dependencies ************************************-->
<!-- 1.1 JUNIT -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!-- 1.2 PostGresSQL JDBC Driver -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4-1200-jdbc41</version>
</dependency>
<!-- 1.3 URL rewrite: basically used to redirect /login req to /login.jsp -->
<dependency>
<groupId>org.tuckey</groupId>
<artifactId>urlrewritefilter</artifactId>
<version>4.0.3</version>
</dependency>
<!-- 1.4 Apache StringUtils for various operations on STRINGS -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.0</version>
</dependency>
<!--************************************ 1 END: Mandatory dependencies ************************************-->
<!--************************************ 2 START : BASIC DEPENDENCIES FOR ORM ************************************-->
<!-- 2.1 Hibernate core -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate.version}</version>
</dependency>
<!-- 2.2 Hibernate-JPA integration -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>${hibernate.version}</version>
</dependency>
<!--************************************ 2 END : BASIC DEPENDENCIES FOR ORM ************************************-->
<!--************************************ 3 START: Spring CORE dependencies ************************************-->
<!-- 3.1 Spring CORE - bean factory -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<!-- 3.2 spring-webmvc is an implementation of Spring MVC.
spring-webvc depends on on spring-web, thus including it will transitively add spring-web.
You don't have to add spring-web explicitly.-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version>
</dependency>
<!-- 3.3 Spring-orm for communication with DB -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>${spring.version}</version>
</dependency>
<!--************************************ 3 START: Spring 4 dependencies ************************************-->
<!--************************************ 4 START: Spring Security ************************************-->
<!-- 4.1 Spring web security -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>${spring.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>${spring.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
<version>${spring.security.version}</version>
</dependency>
<!--************************************ 4 END: Spring Security ************************************-->
<!--************************************ 5 START: Database Connection Pooling (DBCP) ************************************-->
<!-- 5.1 BoneCP is fast! For some tests, it's almost 25 times faster than the next fastest connection pool option -->
<dependency>
<groupId>com.jolbox</groupId>
<artifactId>bonecp</artifactId>
<version>0.8.0.RELEASE</version>
</dependency>
<!--************************************ 5 END: Database Connection Pooling (DBCP) ************************************-->
</dependencies>
<build>
<finalName>TestQube</finalName>
</build>
</project>