Subversion Repositories SmartDukaan

Rev

Rev 21272 | Rev 21285 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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