Commit 1b1dce7175d8ca45a86d44a7c8ee376cc3945544
1 parent
4a89f531
Exists in
master
Inclusão do profile "glassfish3"
Showing
1 changed file
with
72 additions
and
0 deletions
Show diff stats
parent/jsf/pom.xml
... | ... | @@ -172,6 +172,78 @@ |
172 | 172 | </dependencies> |
173 | 173 | </profile> |
174 | 174 | <profile> |
175 | + <id>glassfish3</id> | |
176 | + <dependencies> | |
177 | + <dependency> | |
178 | + <groupId>br.gov.frameworkdemoiselle</groupId> | |
179 | + <artifactId>demoiselle-jsf</artifactId> | |
180 | + <scope>compile</scope> | |
181 | + <exclusions> | |
182 | + <exclusion> | |
183 | + <groupId>javax.servlet</groupId> | |
184 | + <artifactId>servlet-api</artifactId> | |
185 | + </exclusion> | |
186 | + </exclusions> | |
187 | + </dependency> | |
188 | + <dependency> | |
189 | + <groupId>javax.servlet</groupId> | |
190 | + <artifactId>javax.servlet-api</artifactId> | |
191 | + <scope>provided</scope> | |
192 | + </dependency> | |
193 | + <dependency> | |
194 | + <groupId>javax.enterprise</groupId> | |
195 | + <artifactId>cdi-api</artifactId> | |
196 | + <scope>provided</scope> | |
197 | + </dependency> | |
198 | + <dependency> | |
199 | + <groupId>javax.servlet</groupId> | |
200 | + <artifactId>jstl</artifactId> | |
201 | + <scope>provided</scope> | |
202 | + </dependency> | |
203 | + <dependency> | |
204 | + <artifactId>validation-api</artifactId> | |
205 | + <groupId>javax.validation</groupId> | |
206 | + <scope>provided</scope> | |
207 | + </dependency> | |
208 | + <dependency> | |
209 | + <groupId>javax.transaction</groupId> | |
210 | + <artifactId>jta</artifactId> | |
211 | + <scope>provided</scope> | |
212 | + </dependency> | |
213 | + <dependency> | |
214 | + <groupId>org.slf4j</groupId> | |
215 | + <artifactId>slf4j-log4j12</artifactId> | |
216 | + <scope>runtime</scope> | |
217 | + </dependency> | |
218 | + <dependency> | |
219 | + <groupId>org.eclipse.persistence</groupId> | |
220 | + <artifactId>javax.persistence</artifactId> | |
221 | + <scope>provided</scope> | |
222 | + </dependency> | |
223 | + <dependency> | |
224 | + <groupId>com.sun.faces</groupId> | |
225 | + <artifactId>jsf-api</artifactId> | |
226 | + <scope>provided</scope> | |
227 | + </dependency> | |
228 | + <dependency> | |
229 | + <groupId>com.sun.faces</groupId> | |
230 | + <artifactId>jsf-impl</artifactId> | |
231 | + <scope>provided</scope> | |
232 | + </dependency> | |
233 | + <dependency> | |
234 | + <groupId>hsqldb</groupId> | |
235 | + <artifactId>hsqldb</artifactId> | |
236 | + <scope>provided</scope> | |
237 | + </dependency> | |
238 | + | |
239 | + <dependency> | |
240 | + <groupId>org.hibernate</groupId> | |
241 | + <artifactId>hibernate-entitymanager</artifactId> | |
242 | + <scope>test</scope> | |
243 | + </dependency> | |
244 | + </dependencies> | |
245 | + </profile> | |
246 | + <profile> | |
175 | 247 | <id>jboss6</id> |
176 | 248 | <dependencies> |
177 | 249 | <dependency> | ... | ... |