Subversion Repositories SmartDukaan

Rev

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

Rev 21165 Rev 21220
Line 2... Line 2...
2
  <modelVersion>4.0.0</modelVersion>
2
  <modelVersion>4.0.0</modelVersion>
3
  <groupId>com.profitmandi</groupId>
3
  <groupId>com.profitmandi</groupId>
4
  <artifactId>profitmandi-web</artifactId>
4
  <artifactId>profitmandi-web</artifactId>
5
  <packaging>war</packaging>
5
  <packaging>war</packaging>
6
  <version>0.0.1-SNAPSHOT</version>
6
  <version>0.0.1-SNAPSHOT</version>
7
  <name>Profit Mandi</name>
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>
8
  
21
  
-
 
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>
9
  <dependencies>
43
  <dependencies>
10
  	<!-- Spring dependencies -->
44
  	<!-- Spring dependencies -->
11
	<dependency>
45
	<dependency>
12
    	<groupId>org.springframework</groupId>
46
    	<groupId>org.springframework</groupId>
13
    	<artifactId>spring-context</artifactId>
47
    	<artifactId>spring-context</artifactId>
Line 80... Line 114...
80
	<dependency>
114
	<dependency>
81
    	<groupId>javax.servlet</groupId>
115
    	<groupId>javax.servlet</groupId>
82
    	<artifactId>javax.servlet-api</artifactId>
116
    	<artifactId>javax.servlet-api</artifactId>
83
    	<version>3.1.0</version>
117
    	<version>3.1.0</version>
84
	</dependency>
118
	</dependency>
-
 
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>
-
 
125
	
-
 
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>
-
 
132
	
85
	
133
	
86
	
134
	
-
 
135
	<!-- File upload api -->
87
	<dependency>
136
	<dependency>
88
    	<groupId>commons-fileupload</groupId>
137
    	<groupId>commons-fileupload</groupId>
89
    	<artifactId>commons-fileupload</artifactId>
138
    	<artifactId>commons-fileupload</artifactId>
90
    	<version>1.3</version>
139
    	<version>1.3</version>
91
	</dependency>
140
	</dependency>
-
 
141
	
-
 
142
	<!-- Apache common lang -->
92
	<dependency>
143
	<dependency>
93
    	<groupId>org.apache.commons</groupId>
144
    	<groupId>org.apache.commons</groupId>
94
    	<artifactId>commons-lang3</artifactId>
145
    	<artifactId>commons-lang3</artifactId>
95
    	<version>3.5</version>
146
    	<version>3.5</version>
96
	</dependency>
147
	</dependency>
97
	
148
	
-
 
149
	<!-- Logging -->
98
	<dependency>
150
	<dependency>
99
    	<groupId>org.slf4j</groupId>
151
    	<groupId>org.slf4j</groupId>
100
    	<artifactId>slf4j-api</artifactId>
152
    	<artifactId>slf4j-api</artifactId>
101
    	<version>1.7.22</version>
153
    	<version>1.7.22</version>
102
	</dependency>
154
	</dependency>
103
	
155
	
-
 
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 -->
104
	<dependency>
165
	<dependency>
105
    	<groupId>com.fasterxml.jackson.core</groupId>
166
    	<groupId>com.fasterxml.jackson.core</groupId>
106
    	<artifactId>jackson-core</artifactId>
167
    	<artifactId>jackson-core</artifactId>
107
    	<version>2.8.5</version>
168
    	<version>2.8.5</version>
108
	</dependency>
169
	</dependency>
Line 111... Line 172...
111
    	<artifactId>jackson-databind</artifactId>
172
    	<artifactId>jackson-databind</artifactId>
112
    	<version>2.8.5</version>
173
    	<version>2.8.5</version>
113
	</dependency>
174
	</dependency>
114
	
175
	
115
	
176
	
116
	
177
	<!-- Common io -->
117
	<dependency>
178
	<dependency>
118
    	<groupId>commons-io</groupId>
179
    	<groupId>commons-io</groupId>
119
    	<artifactId>commons-io</artifactId>
180
    	<artifactId>commons-io</artifactId>
120
    	<version>2.5</version>
181
    	<version>2.5</version>
121
	</dependency>
182
	</dependency>
-
 
183
	
-
 
184
	<!-- Mysql connector -->
122
	<dependency>
185
	<dependency>
123
    	<groupId>mysql</groupId>
186
    	<groupId>mysql</groupId>
124
    	<artifactId>mysql-connector-java</artifactId>
187
    	<artifactId>mysql-connector-java</artifactId>
125
    	<version>6.0.5</version>
188
    	<version>6.0.5</version>
126
	</dependency>
189
	</dependency>