This repository has been archived by the owner on Mar 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmaven2.html
67 lines (66 loc) · 2.43 KB
/
maven2.html
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
66
67
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<link rel="SHORTCUT ICON" href="/images/favicon.ico"/>
<link rel="stylesheet" type="text/css" href="/yui/reset-fonts-grids-min.css1"/>
<link rel="stylesheet" type="text/css" href="/style.css"/>
<style type="text/css">
ul, li {
list-style: disc inside;
</style>
<title>JavaServer Faces Community</title>
</head>
<body>
<h4>Mojarra 2.0.x Maven 2 Information</h4>
<p>
If you're developing an application for use with a Java EE 6 compliant
application server, your maven project can simply use the following
dependency listing:
</p>
<pre>
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
</pre>
<p>
Note that the classes included in this JAR are merely stubs for
compliation purposes only.
</p>
<p>
Otherwise, if you want to include Mojarra's implementation of the
JSF specification (both API and implementation) for deployment on another
container such as Tomcat or Jetty, use the following dependency listings:
</p>
<pre>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>2.0.2</version>
</dependency>
</pre>
<p>
Snapshots for the 2.0.3 patch release can be obtained using the following
dependency listings:
</p>
<pre>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.0.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>2.0.3-SNAPSHOT</version>
</dependency>
</pre>
</body>
</html>