1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
~ Version: MPL 1.1 |
4 |
~ |
5 |
~ The contents of this file are subject to the Mozilla Public License |
6 |
~ Version 1.1 (the "License"); you may not use this file except in |
7 |
~ compliance with the License. You may obtain a copy of the License at |
8 |
~ http://www.mozilla.org/MPL/ |
9 |
~ |
10 |
~ Software distributed under the License is distributed on an "AS IS" |
11 |
~ basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the |
12 |
~ License for the specific language governing rights and limitations under |
13 |
~ the License. |
14 |
~ |
15 |
~ The Original Code is ICEfaces 1.5 open source software code, released |
16 |
~ November 5, 2006. The Initial Developer of the Original Code is ICEsoft |
17 |
~ Technologies Canada, Corp. Portions created by ICEsoft are Copyright (C) |
18 |
~ 2004-2011 ICEsoft Technologies Canada, Corp. All Rights Reserved. |
19 |
~ |
20 |
~ Contributor(s): _____________________. |
21 |
--> |
22 |
|
23 |
<project xmlns="http://maven.apache.org/POM/4.0.0" |
24 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
25 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
26 |
<modelVersion>4.0.0</modelVersion> |
27 |
<groupId>org.icefaces</groupId> |
28 |
<artifactId>icefaces</artifactId> |
29 |
<version>2.1.0.BETA2</version> |
30 |
<packaging>jar</packaging> |
31 |
<name>ICEfaces Core</name> |
32 |
<url>http://www.icefaces.org</url> |
33 |
<description>ICEfaces core framework library.</description> |
34 |
|
35 |
|
36 |
<properties> |
37 |
<jsf.version>2.1.3</jsf.version> |
38 |
</properties> |
39 |
<repositories> |
40 |
<repository> |
41 |
<id>java.net</id> |
42 |
<url>http://download.java.net/maven/2</url> |
43 |
</repository> |
44 |
<repository> |
45 |
<id>snapshots</id> |
46 |
<url>http://anonsvn.icefaces.org/repo/maven2/snapshots</url> |
47 |
</repository> |
48 |
</repositories> |
49 |
<dependencies> |
50 |
|
51 |
<dependency> |
52 |
<groupId>org.glassfish</groupId> |
53 |
<artifactId>javax.faces</artifactId> |
54 |
<version>${jsf.version}</version> |
55 |
</dependency> |
56 |
|
57 |
</dependencies> |
58 |
|
59 |
</project> |