Advertisement
tadeuespindola

ronaldo-rodrigues-pom-xml-jsf-jdev

Jan 15th, 2023
1,137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.43 KB | Help | 0 0
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2.     <modelVersion>4.0.0</modelVersion>
  3.     <groupId>meuprimeiroprojetojsf</groupId>
  4.     <artifactId>meuprimeiroprojetojsf</artifactId>
  5.     <version>0.0.1-SNAPSHOT</version>
  6.     <name>meuprimeiroprojetojsf</name>
  7.     <url>http://maven.apache.org</url>
  8.  
  9.     <properties>
  10.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11.     </properties>
  12.  
  13.     <dependencies>
  14.  
  15.         <dependency>
  16.             <groupId>junit</groupId>
  17.             <artifactId>junit</artifactId>
  18.             <version>3.8.1</version>
  19.             <scope>test</scope>
  20.         </dependency>
  21.  
  22.         <!-- https://mvnrepository.com/artifact/com.sun.faces/jsf-api -->
  23.         <dependency>
  24.             <groupId>com.sun.faces</groupId>
  25.             <artifactId>jsf-api</artifactId>
  26.             <version>2.2.14</version>
  27.         </dependency>
  28.  
  29.         <!-- https://mvnrepository.com/artifact/com.sun.faces/jsf-api -->
  30.         <dependency>
  31.             <groupId>com.sun.faces</groupId>
  32.             <artifactId>jsf-impl</artifactId>
  33.             <version>2.2.14</version>
  34.         </dependency>
  35.  
  36.     </dependencies>
  37.  
  38.     <build>
  39.         <plugins>
  40.             <plugin>
  41.                 <groupId>org.apache.maven.plugins</groupId>
  42.                 <artifactId>maven-compiler-plugin</artifactId>
  43.                 <version>3.7.0</version>
  44.                 <configuration>
  45.                     <source>8</source>
  46.                     <target>8</target>
  47.                 </configuration>
  48.             </plugin>
  49.         </plugins>
  50.     </build>
  51. </project>
Tags: Java xml jsf pom
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement