Advertisement
tadeuespindola

ronaldo-rodrigues-pom-xml-jsf-jdev-other-plus

Mar 20th, 2023
1,633
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.02 KB | Help | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.     <groupId>meuprimeiroprojetojsf</groupId>
  6.     <artifactId>meuprimeiroprojetojsf</artifactId>
  7.     <version>0.0.1-SNAPSHOT</version>
  8.     <name>meuprimeiroprojetojsf</name>
  9.     <url>http://maven.apache.org</url>
  10.  
  11.     <properties>
  12.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13.     </properties>
  14.  
  15.     <dependencies>
  16.  
  17.         <dependency>
  18.             <groupId>junit</groupId>
  19.             <artifactId>junit</artifactId>
  20.             <version>4.12</version>
  21.             <scope>test</scope>
  22.         </dependency>
  23.  
  24.         <!-- https://mvnrepository.com/artifact/com.sun.faces/jsf-api -->
  25.         <dependency>
  26.             <groupId>com.sun.faces</groupId>
  27.             <artifactId>jsf-api</artifactId>
  28.             <version>2.2.14</version>
  29.             <scope>compile</scope>
  30.         </dependency>
  31.  
  32.         <!-- https://mvnrepository.com/artifact/com.sun.faces/jsf-api -->
  33.         <dependency>
  34.             <groupId>com.sun.faces</groupId>
  35.             <artifactId>jsf-impl</artifactId>
  36.             <version>2.2.14</version>
  37.             <scope>compile</scope>
  38.         </dependency>
  39.  
  40.         <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-entitymanager -->
  41.         <dependency>
  42.             <groupId>org.hibernate</groupId>
  43.             <artifactId>hibernate-entitymanager</artifactId>
  44.             <version>4.3.8.Final</version>
  45.         </dependency>
  46.  
  47.         <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
  48.         <dependency>
  49.             <groupId>org.hibernate</groupId>
  50.             <artifactId>hibernate-core</artifactId>
  51.             <version>4.3.8.Final</version>
  52.             <scope>compile</scope>
  53.         </dependency>
  54.  
  55.         <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
  56.         <dependency>
  57.             <groupId>org.postgresql</groupId>
  58.             <artifactId>postgresql</artifactId>
  59.             <version>9.4.1212</version>
  60.             <scope>compile</scope>
  61.         </dependency>
  62.  
  63.         <dependency>
  64.             <groupId>javax.servlet</groupId>
  65.             <artifactId>jstl</artifactId>
  66.             <version>1.2</version>
  67.         </dependency>
  68.  
  69.         <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  70.         <dependency>
  71.             <groupId>com.google.code.gson</groupId>
  72.             <artifactId>gson</artifactId>
  73.             <version>2.8.5</version>
  74.         </dependency>
  75.  
  76.         <dependency>
  77.             <groupId>org.hibernate</groupId>
  78.             <artifactId>hibernate-validator</artifactId>
  79.             <version>6.0.13.Final</version>
  80.         </dependency>
  81.        
  82.         <dependency>
  83.             <groupId>javax.servlet</groupId>
  84.             <artifactId>javax.servlet-api</artifactId>
  85.             <version>3.1.0</version>
  86.             <scope>provided</scope>
  87.         </dependency>
  88.  
  89.         <dependency>       
  90.             <groupId>javax.xml.bind</groupId>
  91.             <artifactId>jaxb-api</artifactId>
  92.             <version>2.3.1</version>
  93.         </dependency>
  94.  
  95.     </dependencies>    
  96.  
  97.     <build>
  98.         <plugins>
  99.             <plugin>
  100.                 <groupId>org.apache.maven.plugins</groupId>
  101.                 <artifactId>maven-compiler-plugin</artifactId>
  102.                 <version>3.7.0</version>
  103.                 <configuration>
  104.                     <source>8</source>
  105.                     <target>8</target>
  106.                 </configuration>
  107.             </plugin>
  108.         </plugins>
  109.     </build>
  110. </project>
Tags: xml pom maven
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement