Subversion Repositories SmartDukaan

Rev

Rev 21751 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21541 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-admin</artifactId>
5
  <version>0.0.1-SNAPSHOT</version>
6
  <packaging>war</packaging>
7
  <name>profitmandi-admin</name>
8
  <properties>
9
		<failOnMissingWebXml>false</failOnMissingWebXml>
10
		<env>dev</env>
11
	</properties>
12
  <build>
13
		<resources>
14
			<resource>
15
				<directory>src/main/resources</directory>
16
				<filtering>true</filtering>
17
			</resource>
18
		</resources>
19
		<plugins>
20
			<plugin>
21
				<groupId>org.apache.maven.plugins</groupId>
22
				<artifactId>maven-compiler-plugin</artifactId>
23
				<version>3.6.1</version>
24
				<configuration>
25
					<source>1.8</source>
26
					<target>1.8</target>
27
				</configuration>
28
 
29
			</plugin>
30
			<plugin>
31
				<groupId>org.apache.maven.plugins</groupId>
32
				<artifactId>maven-dependency-plugin</artifactId>
33
				<executions>
34
					<execution>
35
						<id>copy-dependencies</id>
36
						<phase>package</phase>
37
						<goals>
38
							<goal>copy-dependencies</goal>
39
						</goals>
40
						<configuration>
41
							<outputDirectory>${project.build.directory}</outputDirectory>
42
							<overWriteReleases>false</overWriteReleases>
43
							<overWriteSnapshots>true</overWriteSnapshots>
44
						</configuration>
45
					</execution>
46
				</executions>
47
			</plugin>
48
		</plugins>
49
	</build>
50
	<dependencies>
51
		<!-- https://mvnrepository.com/artifact/org.springframework/spring-context-support -->
52
		<dependency>
53
    		<groupId>org.freemarker</groupId>
54
    		<artifactId>freemarker</artifactId>
55
    		<version>2.3.23</version>
56
		</dependency>
57
 
58
		<!-- Spring dependencies -->
59
		<dependency>
60
			<groupId>org.springframework</groupId>
61
			<artifactId>spring-context</artifactId>
62
			<version>4.3.5.RELEASE</version>
63
		</dependency>
64
		<dependency>
65
    		<groupId>org.springframework</groupId>
66
    		<artifactId>spring-context-support</artifactId>
67
    		<version>4.3.5.RELEASE</version>
68
		</dependency>
69
		<dependency>
70
			<groupId>org.springframework</groupId>
71
			<artifactId>spring-web</artifactId>
72
			<version>4.3.5.RELEASE</version>
73
		</dependency>
74
		<dependency>
75
			<groupId>org.springframework</groupId>
76
			<artifactId>spring-core</artifactId>
77
			<version>4.3.5.RELEASE</version>
78
		</dependency>
79
 
80
		<dependency>
81
			<groupId>org.springframework</groupId>
82
			<artifactId>spring-webmvc</artifactId>
83
			<version>4.3.5.RELEASE</version>
84
		</dependency>
85
		<dependency>
86
			<groupId>org.springframework</groupId>
87
			<artifactId>spring-beans</artifactId>
88
			<version>4.3.5.RELEASE</version>
89
		</dependency>
90
		<dependency>
91
			<groupId>org.springframework</groupId>
92
			<artifactId>spring-tx</artifactId>
93
			<version>4.3.5.RELEASE</version>
94
		</dependency>
95
 
96
		<!-- Servlet and jsp dependencies -->
97
		<dependency>
98
			<groupId>javax.servlet</groupId>
99
			<artifactId>javax.servlet-api</artifactId>
100
			<version>3.1.0</version>
101
		</dependency>
102
		<dependency>
103
			<groupId>javax.servlet.jsp</groupId>
104
			<artifactId>jsp-api</artifactId>
105
			<version>2.2</version>
106
		</dependency>
107
		<dependency>
108
			<groupId>javax.servlet</groupId>
109
			<artifactId>javax.servlet-api</artifactId>
110
			<version>3.1.0</version>
111
		</dependency>
112
 
113
		<!-- Logging -->
114
		<dependency>
115
			<groupId>org.slf4j</groupId>
116
			<artifactId>slf4j-api</artifactId>
117
			<version>1.7.22</version>
118
		</dependency>
119
		<dependency>
120
			<groupId>org.slf4j</groupId>
121
			<artifactId>slf4j-simple</artifactId>
122
			<version>1.7.25</version>
123
		</dependency>
124
 
125
		<!-- File upload api -->
126
		<dependency>
127
			<groupId>commons-fileupload</groupId>
128
			<artifactId>commons-fileupload</artifactId>
129
			<version>1.3</version>
130
		</dependency>
131
	</dependencies>
132
</project>