-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
65 lines (60 loc) · 1.95 KB
/
pom.xml
File metadata and controls
65 lines (60 loc) · 1.95 KB
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
<?xml version="1.0" encoding="utf-8"?>
<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.infy</groupId>
<artifactId>parent-pom</artifactId>
<packaging>pom</packaging>
<name>Spring</name>
<version>1.0</version>
<modules>
<module>SpringDAO</module>
<module>SpringMVC</module>
<module>SpringEAR</module>
</modules>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<version>2.4.2</version>
<modules>
<webModule>
<groupId>com.infy</groupId>
<artifactId>SpringMVC</artifactId>
<bundleFileName>SpringMVC.war</bundleFileName>
<contextRoot>/SpringMVC</contextRoot>
</webModule>
</modules>
<displayName>SpringMVC</displayName>
<!-- If I want maven to generate the application.xml, set this to true -->
<generateApplicationXml>true</generateApplicationXml>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.3</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
<finalName>SpringMVC</finalName>
</build>
<!-- Define the versions of your ear components here -->
<dependencies>
<dependency>
<groupId>com.infy</groupId>
<artifactId>SpringMVC</artifactId>
<version>1.0</version>
<type>war</type>
</dependency>
</dependencies>
</project>