Commit c64540273f70e9f86eacda5995542ed158da3f26
1 parent
244466cf
Exists in
master
added profile for weblogic 12c
Showing
2 changed files
with
60 additions
and
0 deletions
Show diff stats
parent/jsf/pom.xml
@@ -118,6 +118,16 @@ | @@ -118,6 +118,16 @@ | ||
118 | </dependencies> | 118 | </dependencies> |
119 | </profile> | 119 | </profile> |
120 | <profile> | 120 | <profile> |
121 | + <id>weblogic12</id> | ||
122 | + <dependencies> | ||
123 | + <dependency> | ||
124 | + <groupId>com.sun.faces</groupId> | ||
125 | + <artifactId>jsf-api</artifactId> | ||
126 | + <scope>provided</scope> | ||
127 | + </dependency> | ||
128 | + </dependencies> | ||
129 | + </profile> | ||
130 | + <profile> | ||
121 | <id>jboss6</id> | 131 | <id>jboss6</id> |
122 | <dependencies> | 132 | <dependencies> |
123 | <dependency> | 133 | <dependency> |
parent/servlet/pom.xml
@@ -230,6 +230,56 @@ | @@ -230,6 +230,56 @@ | ||
230 | </dependencies> | 230 | </dependencies> |
231 | </profile> | 231 | </profile> |
232 | <profile> | 232 | <profile> |
233 | + <id>weblogic12</id> | ||
234 | + <dependencies> | ||
235 | + <dependency> | ||
236 | + <groupId>javax.servlet</groupId> | ||
237 | + <artifactId>javax.servlet-api</artifactId> | ||
238 | + <scope>provided</scope> | ||
239 | + </dependency> | ||
240 | + <dependency> | ||
241 | + <groupId>javax.enterprise</groupId> | ||
242 | + <artifactId>cdi-api</artifactId> | ||
243 | + <scope>provided</scope> | ||
244 | + </dependency> | ||
245 | + <dependency> | ||
246 | + <groupId>javax.servlet</groupId> | ||
247 | + <artifactId>jstl</artifactId> | ||
248 | + <scope>provided</scope> | ||
249 | + </dependency> | ||
250 | + <dependency> | ||
251 | + <artifactId>validation-api</artifactId> | ||
252 | + <groupId>javax.validation</groupId> | ||
253 | + <scope>provided</scope> | ||
254 | + </dependency> | ||
255 | + <dependency> | ||
256 | + <groupId>javax.transaction</groupId> | ||
257 | + <artifactId>jta</artifactId> | ||
258 | + <scope>provided</scope> | ||
259 | + </dependency> | ||
260 | + <dependency> | ||
261 | + <groupId>org.slf4j</groupId> | ||
262 | + <artifactId>slf4j-log4j12</artifactId> | ||
263 | + <scope>runtime</scope> | ||
264 | + </dependency> | ||
265 | + <dependency> | ||
266 | + <groupId>org.eclipse.persistence</groupId> | ||
267 | + <artifactId>javax.persistence</artifactId> | ||
268 | + <scope>provided</scope> | ||
269 | + </dependency> | ||
270 | + <dependency> | ||
271 | + <groupId>hsqldb</groupId> | ||
272 | + <artifactId>hsqldb</artifactId> | ||
273 | + <scope>provided</scope> | ||
274 | + </dependency> | ||
275 | + <dependency> | ||
276 | + <groupId>org.hibernate</groupId> | ||
277 | + <artifactId>hibernate-entitymanager</artifactId> | ||
278 | + <scope>test</scope> | ||
279 | + </dependency> | ||
280 | + </dependencies> | ||
281 | + </profile> | ||
282 | + <profile> | ||
233 | <id>jboss6</id> | 283 | <id>jboss6</id> |
234 | <dependencies> | 284 | <dependencies> |
235 | <dependency> | 285 | <dependency> |