Advertisement
tadeuespindola

pom-xml-fabricio

Aug 24th, 2022
1,040
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.77 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <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">
  4.     <modelVersion>4.0.0</modelVersion>
  5.  
  6.     <groupId>meuprimeiroprojetojsf</groupId>
  7.     <artifactId>meuprimeiroprojetojsf</artifactId>
  8.     <version>0.0.1-SNAPSHOT</version>
  9.  
  10.     <name>meuprimeiroprojetojsf</name>
  11.     <url>http://www.example.com</url>
  12.  
  13.     <properties>
  14.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15.         <maven.compiler.source>11</maven.compiler.source>
  16.         <maven.compiler.target>11</maven.compiler.target>
  17.     </properties>
  18.  
  19.     <dependencies>
  20.    
  21.         <dependency>
  22.             <groupId>javax.servlet</groupId>
  23.             <artifactId>jstl</artifactId>
  24.             <version>1.2</version>
  25.             <scope>test</scope>
  26.         </dependency>
  27.        
  28.         <dependency>
  29.             <groupId>javax.servlet</groupId>
  30.             <artifactId>javax.servlet-api</artifactId>
  31.             <version>3.1.0</version>
  32.             <scope>provided</scope>
  33.         </dependency>
  34.        
  35.         <dependency>
  36.             <groupId>junit</groupId>
  37.             <artifactId>junit</artifactId>
  38.             <version>4.11</version>
  39.             <scope>test</scope>
  40.         </dependency>
  41.  
  42.         <dependency>
  43.             <groupId>com.sun.faces</groupId>
  44.             <artifactId>jsf-api</artifactId>
  45.             <version>2.2.14</version>
  46.         </dependency>
  47.  
  48.         <dependency>
  49.             <groupId>com.sun.faces</groupId>
  50.             <artifactId>jsf-impl</artifactId>
  51.             <version>2.2.14</version>
  52.         </dependency>
  53.     </dependencies>
  54.  
  55.     <build>
  56.         <plugins>
  57.             <plugin>
  58.                 <groupId>org.apache.maven.plugins</groupId>
  59.                 <artifactId>maven-compiler-plugin</artifactId>
  60.                 <version>3.7.0</version>
  61.                 <configuration>
  62.                     <source>11</source>
  63.                     <target>11</target>
  64.                 </configuration>
  65.             </plugin>
  66.         </plugins>
  67.     </build>
  68. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement