Subversion Repositories SmartDukaan

Rev

Rev 21165 | Rev 21272 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21165 ashik.ali 1
<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/xsd/maven-4.0.0.xsd">
2
  <modelVersion>4.0.0</modelVersion>
3
  <groupId>com.profitmandi</groupId>
4
  <artifactId>profitmandi-web</artifactId>
5
  <packaging>war</packaging>
6
  <version>0.0.1-SNAPSHOT</version>
21220 ashik.ali 7
  <name>profitmandi-web</name>
8
  <properties>
9
    <failOnMissingWebXml>false</failOnMissingWebXml>
10
</properties>
11
  <build>
12
  <plugins>
13
    <plugin>
14
      <groupId>org.apache.maven.plugins</groupId>
15
      <artifactId>maven-compiler-plugin</artifactId>
16
      <version>3.6.1</version>
17
      <configuration>
18
        <source>1.8</source>
19
        <target>1.8</target>
20
      </configuration>
21165 ashik.ali 21
 
21220 ashik.ali 22
    </plugin>
23
  	<plugin>
24
    <groupId>org.apache.maven.plugins</groupId>
25
    <artifactId>maven-dependency-plugin</artifactId>
26
    <executions>
27
      <execution>
28
        <id>copy-dependencies</id>
29
        <phase>package</phase>
30
        <goals>
31
          <goal>copy-dependencies</goal>
32
        </goals>
33
        <configuration>
34
          <outputDirectory>${project.build.directory}</outputDirectory>
35
          <overWriteReleases>false</overWriteReleases>
36
          <overWriteSnapshots>true</overWriteSnapshots>
37
        </configuration>
38
      </execution>
39
    </executions>
40
  </plugin>
41
  </plugins>
42
</build>
21165 ashik.ali 43
  <dependencies>
44
  	<!-- Spring dependencies -->
45
	<dependency>
46
    	<groupId>org.springframework</groupId>
47
    	<artifactId>spring-context</artifactId>
48
    	<version>4.3.5.RELEASE</version>
49
	</dependency>
50
	<dependency>
51
    	<groupId>org.springframework</groupId>
52
    	<artifactId>spring-web</artifactId>
53
    	<version>4.3.5.RELEASE</version>
54
	</dependency>
55
	<dependency>
56
    	<groupId>org.springframework</groupId>
57
    	<artifactId>spring-core</artifactId>
58
    	<version>4.3.5.RELEASE</version>
59
	</dependency>
60
	<dependency>
61
    	<groupId>org.springframework</groupId>
62
    	<artifactId>spring-webmvc</artifactId>
63
    	<version>4.3.5.RELEASE</version>
64
	</dependency>
65
	<dependency>
66
    	<groupId>org.springframework</groupId>
67
    	<artifactId>spring-beans</artifactId>
68
    	<version>4.3.5.RELEASE</version>
69
	</dependency>
70
	<dependency>
71
    	<groupId>org.springframework</groupId>
72
    	<artifactId>spring-tx</artifactId>
73
    	<version>4.3.5.RELEASE</version>
74
	</dependency>
75
 
76
	<!-- Hibernate dependencies -->
77
	<dependency>
78
    	<groupId>org.hibernate</groupId>
79
    	<artifactId>hibernate-core</artifactId>
80
    	<version>5.2.5.Final</version>
81
	</dependency>
82
	<dependency>
83
    	<groupId>org.hibernate</groupId>
84
    	<artifactId>hibernate-entitymanager</artifactId>
85
    	<version>5.2.5.Final</version>
86
	</dependency>
87
	<dependency>
88
    	<groupId>org.hibernate.javax.persistence</groupId>
89
    	<artifactId>hibernate-jpa-2.1-api</artifactId>
90
    	<version>1.0.0.Final</version>
91
	</dependency>
92
	<dependency>
93
    	<groupId>org.hibernate.common</groupId>
94
    	<artifactId>hibernate-commons-annotations</artifactId>
95
    	<version>5.0.1.Final</version>
96
	</dependency>
97
	<dependency>
98
    	<groupId>org.jboss.logging</groupId>
99
    	<artifactId>jboss-logging</artifactId>
100
    	<version>3.3.0.Final</version>
101
	</dependency>
102
 
103
	<!-- Servlet and jsp dependencies -->
104
	<dependency>
105
    	<groupId>javax.servlet</groupId>
106
    	<artifactId>javax.servlet-api</artifactId>
107
    	<version>3.1.0</version>
108
	</dependency>
109
	<dependency>
110
    	<groupId>javax.servlet.jsp</groupId>
111
    	<artifactId>jsp-api</artifactId>
112
    	<version>2.2</version>
113
	</dependency>
114
	<dependency>
115
    	<groupId>javax.servlet</groupId>
116
    	<artifactId>javax.servlet-api</artifactId>
117
    	<version>3.1.0</version>
118
	</dependency>
21220 ashik.ali 119
	<!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
120
	<dependency>
121
	    <groupId>javax.servlet</groupId>
122
	    <artifactId>jstl</artifactId>
123
	    <version>1.2</version>
124
	</dependency>
21165 ashik.ali 125
 
21220 ashik.ali 126
	<!-- https://mvnrepository.com/artifact/taglibs/standard -->
127
	<dependency>
128
    	<groupId>taglibs</groupId>
129
    	<artifactId>standard</artifactId>
130
    	<version>1.1.2</version>
131
	</dependency>
21165 ashik.ali 132
 
21220 ashik.ali 133
 
134
 
135
	<!-- File upload api -->
21165 ashik.ali 136
	<dependency>
137
    	<groupId>commons-fileupload</groupId>
138
    	<artifactId>commons-fileupload</artifactId>
139
    	<version>1.3</version>
140
	</dependency>
21220 ashik.ali 141
 
142
	<!-- Apache common lang -->
21165 ashik.ali 143
	<dependency>
144
    	<groupId>org.apache.commons</groupId>
145
    	<artifactId>commons-lang3</artifactId>
146
    	<version>3.5</version>
147
	</dependency>
148
 
21220 ashik.ali 149
	<!-- Logging -->
21165 ashik.ali 150
	<dependency>
151
    	<groupId>org.slf4j</groupId>
152
    	<artifactId>slf4j-api</artifactId>
153
    	<version>1.7.22</version>
154
	</dependency>
155
 
21220 ashik.ali 156
	<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple -->
157
<dependency>
158
    <groupId>org.slf4j</groupId>
159
    <artifactId>slf4j-simple</artifactId>
160
    <version>1.7.25</version>
161
</dependency>
162
 
163
 
164
	<!--  Json parsing -->
21165 ashik.ali 165
	<dependency>
166
    	<groupId>com.fasterxml.jackson.core</groupId>
167
    	<artifactId>jackson-core</artifactId>
168
    	<version>2.8.5</version>
169
	</dependency>
170
	<dependency>
171
    	<groupId>com.fasterxml.jackson.core</groupId>
172
    	<artifactId>jackson-databind</artifactId>
173
    	<version>2.8.5</version>
174
	</dependency>
175
 
176
 
21220 ashik.ali 177
	<!-- Common io -->
21165 ashik.ali 178
	<dependency>
179
    	<groupId>commons-io</groupId>
180
    	<artifactId>commons-io</artifactId>
181
    	<version>2.5</version>
182
	</dependency>
21220 ashik.ali 183
 
184
	<!-- Mysql connector -->
21165 ashik.ali 185
	<dependency>
186
    	<groupId>mysql</groupId>
187
    	<artifactId>mysql-connector-java</artifactId>
188
    	<version>6.0.5</version>
189
	</dependency>
190
  </dependencies>
191
</project>