1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
---|
3 | <modelVersion>4.0.0</modelVersion> |
---|
4 | <groupId>ndg.services</groupId> |
---|
5 | <artifactId>NewmoonJSP</artifactId> |
---|
6 | <version>0.0.1-SNAPSHOT</version> |
---|
7 | <packaging>war</packaging> |
---|
8 | |
---|
9 | <properties> |
---|
10 | <!-- for Alhpa versions it was just 'ALPHA2' --> |
---|
11 | <org.richfaces.bom.version>4.0.0.20101226-M5</org.richfaces.bom.version> |
---|
12 | </properties> |
---|
13 | <dependencyManagement> |
---|
14 | <dependencies> |
---|
15 | <dependency> |
---|
16 | <groupId>org.richfaces</groupId> |
---|
17 | <artifactId>richfaces-bom</artifactId> |
---|
18 | <version>${org.richfaces.bom.version}</version> |
---|
19 | <scope>import</scope> |
---|
20 | <type>pom</type> |
---|
21 | </dependency> |
---|
22 | </dependencies> |
---|
23 | </dependencyManagement> |
---|
24 | |
---|
25 | <dependencies> |
---|
26 | <dependency> |
---|
27 | <groupId>com.sun.facelets</groupId> |
---|
28 | <artifactId>jsf-facelets</artifactId> |
---|
29 | <version>1.1.15</version> |
---|
30 | </dependency> |
---|
31 | |
---|
32 | <dependency> |
---|
33 | <groupId>org.richfaces.ui.input</groupId> |
---|
34 | <artifactId>richfaces-ui-input-ui</artifactId> |
---|
35 | </dependency> |
---|
36 | |
---|
37 | <dependency> |
---|
38 | <groupId>org.richfaces.ui.output</groupId> |
---|
39 | <artifactId>richfaces-ui-output-ui</artifactId> |
---|
40 | </dependency> |
---|
41 | |
---|
42 | <dependency> |
---|
43 | <groupId>org.richfaces.ui.core</groupId> |
---|
44 | <artifactId>richfaces-ui-core-ui</artifactId> |
---|
45 | </dependency> |
---|
46 | |
---|
47 | <dependency> |
---|
48 | <groupId>org.richfaces.core</groupId> |
---|
49 | <artifactId>richfaces-core-impl</artifactId> |
---|
50 | </dependency> |
---|
51 | |
---|
52 | |
---|
53 | <dependency> |
---|
54 | <groupId>javax.servlet</groupId> |
---|
55 | <artifactId>servlet-api</artifactId> |
---|
56 | <scope>provided</scope> |
---|
57 | </dependency> |
---|
58 | |
---|
59 | <dependency> |
---|
60 | <groupId>com.sun.faces</groupId> |
---|
61 | <artifactId>jsf-api</artifactId> |
---|
62 | </dependency> |
---|
63 | <dependency> |
---|
64 | <groupId>com.sun.faces</groupId> |
---|
65 | <artifactId>jsf-impl</artifactId> |
---|
66 | </dependency> |
---|
67 | |
---|
68 | <dependency> |
---|
69 | <groupId>javax.servlet.jsp</groupId> |
---|
70 | <artifactId>jsp-api</artifactId> |
---|
71 | <scope>provided</scope> |
---|
72 | </dependency> |
---|
73 | |
---|
74 | <dependency> |
---|
75 | <groupId>javax.transaction</groupId> |
---|
76 | <artifactId>jta</artifactId> |
---|
77 | <version>1.1</version> |
---|
78 | <scope>provided</scope> |
---|
79 | </dependency> |
---|
80 | |
---|
81 | <dependency> |
---|
82 | <groupId>javax.el</groupId> |
---|
83 | <artifactId>el-api</artifactId> |
---|
84 | <scope>provided</scope> |
---|
85 | </dependency> |
---|
86 | |
---|
87 | <dependency> |
---|
88 | <groupId>javax.servlet</groupId> |
---|
89 | <artifactId>jstl</artifactId> |
---|
90 | </dependency> |
---|
91 | |
---|
92 | <dependency> |
---|
93 | <groupId>net.sf.ehcache</groupId> |
---|
94 | <artifactId>ehcache</artifactId> |
---|
95 | </dependency> |
---|
96 | <!-- Tests --> |
---|
97 | |
---|
98 | <dependency> |
---|
99 | <groupId>org.testng</groupId> |
---|
100 | <artifactId>testng</artifactId> |
---|
101 | <version>5.10</version> |
---|
102 | <classifier>jdk15</classifier> |
---|
103 | <scope>test</scope> |
---|
104 | </dependency> |
---|
105 | |
---|
106 | <dependency> |
---|
107 | <groupId>ndg.services</groupId> |
---|
108 | <artifactId>newmoon</artifactId> |
---|
109 | <version>0.0.1-SNAPSHOT</version> |
---|
110 | <exclusions> |
---|
111 | <exclusion> |
---|
112 | <artifactId>xalan</artifactId> |
---|
113 | <groupId>xalan</groupId> |
---|
114 | </exclusion> |
---|
115 | <exclusion> |
---|
116 | <artifactId>xercesImpl</artifactId> |
---|
117 | <groupId>xerces</groupId> |
---|
118 | </exclusion> |
---|
119 | <exclusion> |
---|
120 | <artifactId>serializer</artifactId> |
---|
121 | <groupId>xalan</groupId> |
---|
122 | </exclusion> |
---|
123 | <exclusion> |
---|
124 | <artifactId>xml-resolver</artifactId> |
---|
125 | <groupId>xml-resolver</groupId> |
---|
126 | </exclusion> |
---|
127 | <exclusion> |
---|
128 | <artifactId>antlr</artifactId> |
---|
129 | <groupId>antlr</groupId> |
---|
130 | </exclusion> |
---|
131 | <exclusion> |
---|
132 | <artifactId>quartz</artifactId> |
---|
133 | <groupId>quartz</groupId> |
---|
134 | </exclusion> |
---|
135 | <exclusion> |
---|
136 | <artifactId>slf4j-api</artifactId> |
---|
137 | <groupId>org.slf4j</groupId> |
---|
138 | </exclusion> |
---|
139 | <exclusion> |
---|
140 | <artifactId>xml-apis</artifactId> |
---|
141 | <groupId>xml-apis</groupId> |
---|
142 | </exclusion> |
---|
143 | <exclusion> |
---|
144 | <artifactId>log4j-over-slf4j</artifactId> |
---|
145 | <groupId>org.slf4j</groupId> |
---|
146 | </exclusion> |
---|
147 | </exclusions> |
---|
148 | </dependency> |
---|
149 | |
---|
150 | <dependency> |
---|
151 | <groupId>ndg.services.schemas</groupId> |
---|
152 | <artifactId>newmoonReport</artifactId> |
---|
153 | <version>0.0.1-SNAPSHOT</version> |
---|
154 | </dependency> |
---|
155 | |
---|
156 | <dependency> |
---|
157 | <groupId>log4j</groupId> |
---|
158 | <artifactId>log4j</artifactId> |
---|
159 | <version>1.2.12</version> |
---|
160 | </dependency> |
---|
161 | |
---|
162 | <dependency> |
---|
163 | <groupId>org.slf4j</groupId> |
---|
164 | <artifactId>slf4j-log4j12</artifactId> |
---|
165 | <version>1.6.1</version> |
---|
166 | <scope>provided</scope> |
---|
167 | </dependency> |
---|
168 | |
---|
169 | <dependency> |
---|
170 | <groupId>junit</groupId> |
---|
171 | <artifactId>junit</artifactId> |
---|
172 | <version>4.8.2</version> |
---|
173 | <scope>test</scope> |
---|
174 | </dependency> |
---|
175 | <dependency> |
---|
176 | <groupId>javax.servlet</groupId> |
---|
177 | <artifactId>servlet-api</artifactId> |
---|
178 | <version>2.5</version> |
---|
179 | <scope>provided</scope> |
---|
180 | </dependency> |
---|
181 | </dependencies> |
---|
182 | |
---|
183 | <build> |
---|
184 | <plugins> |
---|
185 | <plugin> |
---|
186 | <groupId>org.apache.maven.plugins</groupId> |
---|
187 | <artifactId>maven-war-plugin</artifactId> |
---|
188 | <version>2.0.2</version> |
---|
189 | </plugin> |
---|
190 | |
---|
191 | <plugin> |
---|
192 | <groupId>org.apache.maven.plugins</groupId> |
---|
193 | <artifactId>maven-compiler-plugin</artifactId> |
---|
194 | <configuration> |
---|
195 | <source>1.6</source> |
---|
196 | <target>1.6</target> |
---|
197 | </configuration> |
---|
198 | </plugin> |
---|
199 | </plugins> |
---|
200 | </build> |
---|
201 | |
---|
202 | </project> |
---|