Java Server Faces的maven依赖

来源:互联网 发布:nginx 自定义403页面 编辑:程序博客网 时间:2024/06/06 02:24
[html] view plaincopy
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  
  2.   <modelVersion>4.0.0</modelVersion>  
  3.   <groupId>com.vs.myjsf</groupId>  
  4.   <artifactId>myjsf</artifactId>  
  5.   <version>0.0.1-SNAPSHOT</version>  
  6.   <packaging>war</packaging>  
  7.   <name>myjsf</name>  
  8.   <description>myjsf</description>  
  9.   <dependencies>  
  10.         <dependency>  
  11.             <groupId>commons-fileupload</groupId>  
  12.             <artifactId>commons-fileupload</artifactId>  
  13.             <version>1.2</version>  
  14.         </dependency>  
  15.         <dependency>  
  16.             <groupId>commons-beanutils</groupId>  
  17.             <artifactId>commons-beanutils</artifactId>  
  18.             <version>1.8.0</version>  
  19.         </dependency>  
  20.         <dependency>  
  21.             <groupId>commons-io</groupId>  
  22.             <artifactId>commons-io</artifactId>  
  23.             <version>1.4</version>  
  24.         </dependency>  
  25.         <dependency>  
  26.             <groupId>commons-collections</groupId>  
  27.             <artifactId>commons-collections</artifactId>  
  28.             <version>3.2.1</version>  
  29.         </dependency>  
  30.         <dependency>  
  31.             <groupId>commons-digester</groupId>  
  32.             <artifactId>commons-digester</artifactId>  
  33.             <version>1.8</version>  
  34.         </dependency>  
  35.         <dependency>  
  36.             <groupId>commons-logging</groupId>  
  37.             <artifactId>commons-logging</artifactId>  
  38.             <version>1.1</version>  
  39.         </dependency>  
  40.         <dependency>  
  41.             <groupId>com.sun.faces</groupId>  
  42.             <artifactId>jsf-api</artifactId>  
  43.             <version>2.1.2</version>  
  44.         </dependency>  
  45.         <dependency>  
  46.             <groupId>com.sun.faces</groupId>  
  47.             <artifactId>jsf-impl</artifactId>  
  48.             <version>2.1.2</version>  
  49.         </dependency>  
  50.         <dependency>  
  51.             <groupId>javax.servlet</groupId>  
  52.             <artifactId>jstl</artifactId>  
  53.             <version>1.2</version>  
  54.         </dependency>  
  55.         <dependency>  
  56.             <groupId>javax.servlet</groupId>  
  57.             <artifactId>servlet-api</artifactId>  
  58.             <version>2.5</version>  
  59.             <scope>provided</scope>  
  60.         </dependency>  
  61.         <dependency>  
  62.             <groupId>javax.servlet.jsp</groupId>  
  63.             <artifactId>jsp-api</artifactId>  
  64.             <version>2.1</version>  
  65.             <scope>provided</scope>  
  66.         </dependency>  
  67.         <dependency>  
  68.             <groupId>taglibs</groupId>  
  69.             <artifactId>standard</artifactId>  
  70.             <version>1.1.2</version>  
  71.         </dependency>  
  72.         <dependency>  
  73.             <groupId>javax.servlet</groupId>  
  74.             <artifactId>jstl</artifactId>  
  75.             <version>1.2</version>  
  76.         </dependency>  
  77.     </dependencies>  
  78. </project>