Advertisement
tadeuespindola

suporte-gustavo-hercules-jdev-pom-xml

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