Java Server Faces的maven依赖

[html] view plain copy
  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.0modelVersion>  
  3.   <groupId>com.vs.myjsfgroupId>  
  4.   <artifactId>myjsfartifactId>  
  5.   <version>0.0.1-SNAPSHOTversion>  
  6.   <packaging>warpackaging>  
  7.   <name>myjsfname>  
  8.   <description>myjsfdescription>  
  9.   <dependencies>  
  10.         <dependency>  
  11.             <groupId>commons-fileuploadgroupId>  
  12.             <artifactId>commons-fileuploadartifactId>  
  13.             <version>1.2version>  
  14.         dependency>  
  15.         <dependency>  
  16.             <groupId>commons-beanutilsgroupId>  
  17.             <artifactId>commons-beanutilsartifactId>  
  18.             <version>1.8.0version>  
  19.         dependency>  
  20.         <dependency>  
  21.             <groupId>commons-iogroupId>  
  22.             <artifactId>commons-ioartifactId>  
  23.             <version>1.4version>  
  24.         dependency>  
  25.         <dependency>  
  26.             <groupId>commons-collectionsgroupId>  
  27.             <artifactId>commons-collectionsartifactId>  
  28.             <version>3.2.1version>  
  29.         dependency>  
  30.         <dependency>  
  31.             <groupId>commons-digestergroupId>  
  32.             <artifactId>commons-digesterartifactId>  
  33.             <version>1.8version>  
  34.         dependency>  
  35.         <dependency>  
  36.             <groupId>commons-logginggroupId>  
  37.             <artifactId>commons-loggingartifactId>  
  38.             <version>1.1version>  
  39.         dependency>  
  40.         <dependency>  
  41.             <groupId>com.sun.facesgroupId>  
  42.             <artifactId>jsf-apiartifactId>  
  43.             <version>2.1.2version>  
  44.         dependency>  
  45.         <dependency>  
  46.             <groupId>com.sun.facesgroupId>  
  47.             <artifactId>jsf-implartifactId>  
  48.             <version>2.1.2version>  
  49.         dependency>  
  50.         <dependency>  
  51.             <groupId>javax.servletgroupId>  
  52.             <artifactId>jstlartifactId>  
  53.             <version>1.2version>  
  54.         dependency>  
  55.         <dependency>  
  56.             <groupId>javax.servletgroupId>  
  57.             <artifactId>servlet-apiartifactId>  
  58.             <version>2.5version>  
  59.             <scope>providedscope>  
  60.         dependency>  
  61.         <dependency>  
  62.             <groupId>javax.servlet.jspgroupId>  
  63.             <artifactId>jsp-apiartifactId>  
  64.             <version>2.1version>  
  65.             <scope>providedscope>  
  66.         dependency>  
  67.         <dependency>  
  68.             <groupId>taglibsgroupId>  
  69.             <artifactId>standardartifactId>  
  70.             <version>1.1.2version>  
  71.         dependency>  
  72.         <dependency>  
  73.             <groupId>javax.servletgroupId>  
  74.             <artifactId>jstlartifactId>  
  75.             <version>1.2version>  
  76.         dependency>  
  77.     dependencies>  
  78. project> 

你可能感兴趣的:(JSF)