Advertisement
tadeuespindola

wiliam-pom-tadeu-completo

Aug 17th, 2022
709
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 4.44 KB | Help | 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"
  4.   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.   <modelVersion>4.0.0</modelVersion>
  6.  
  7.   <groupId>RevisaoJPA</groupId>
  8.   <artifactId>RevisaoJPA</artifactId>
  9.   <version>0.0.1-SNAPSHOT</version>
  10.  
  11.   <name>RevisaoJPA</name>
  12.   <!-- FIXME change it to the project's website -->
  13.  <url>http://www.example.com</url>
  14.  
  15.  <properties>
  16.    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17.    <maven.compiler.source>11</maven.compiler.source>
  18.    <maven.compiler.target>11</maven.compiler.target>
  19.  </properties>
  20.  
  21.  <dependencies>
  22.    <dependency>
  23.      <groupId>junit</groupId>
  24.      <artifactId>junit</artifactId>
  25.      <version>4.11</version>
  26.      <scope>test</scope>
  27.    </dependency>
  28.    
  29.    <dependency>
  30.      <groupId>org.primefaces</groupId>
  31.      <artifactId>primefaces</artifactId>
  32.     <version>6.2</version>
  33.  </dependency>
  34.  
  35.    
  36.    <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
  37. <dependency>
  38.    <groupId>org.postgresql</groupId>
  39.    <artifactId>postgresql</artifactId>
  40.    <version>42.4.1</version>
  41. </dependency>
  42.  
  43. <!-- API, java.xml.bind module -->
  44. <dependency>
  45.    <groupId>jakarta.xml.bind</groupId>
  46.    <artifactId>jakarta.xml.bind-api</artifactId>
  47.    <version>2.3.2</version>
  48. </dependency>
  49.  
  50. <!-- Runtime, com.sun.xml.bind module -->
  51. <dependency>
  52.    <groupId>org.glassfish.jaxb</groupId>
  53.    <artifactId>jaxb-runtime</artifactId>
  54.    <version>2.3.2</version>
  55. </dependency>
  56.  
  57. <!-- https://mvnrepository.com/artifact/com.sun.faces/jsf-api -->
  58. <dependency>
  59.    <groupId>com.sun.faces</groupId>
  60.    <artifactId>jsf-api</artifactId>
  61.    <version>2.2.0</version>
  62. </dependency>
  63.  
  64. <dependency>
  65.    <groupId>org.hibernate</groupId>
  66.    <artifactId>hibernate-validator</artifactId>
  67.    <version>5.1.3.Final</version>
  68.    <scope>compile</scope>
  69.  </dependency>
  70.  
  71.  <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
  72. <dependency>
  73.    <groupId>org.hibernate</groupId>
  74.    <artifactId>hibernate-core</artifactId>
  75.    <version>4.3.8.Final</version>
  76. </dependency>
  77. <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-entitymanager -->
  78. <dependency>
  79.    <groupId>org.hibernate</groupId>
  80.    <artifactId>hibernate-entitymanager</artifactId>
  81.    <version>4.3.8.Final</version>
  82. </dependency>
  83.  
  84. <!-- https://mvnrepository.com/artifact/com.sun.faces/jsf-impl -->
  85. <dependency>
  86.    <groupId>com.sun.faces</groupId>
  87.    <artifactId>jsf-impl</artifactId>
  88.    <version>2.2.0</version>
  89. </dependency>
  90.  </dependencies>
  91.  
  92.  <build>
  93.    <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  94.      <plugins>
  95.        <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  96.        <plugin>
  97.          <artifactId>maven-clean-plugin</artifactId>
  98.          <version>3.1.0</version>
  99.        </plugin>
  100.        <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  101.        <plugin>
  102.          <artifactId>maven-resources-plugin</artifactId>
  103.          <version>3.0.2</version>
  104.        </plugin>
  105.        <plugin>
  106.          <artifactId>maven-compiler-plugin</artifactId>
  107.          <version>3.8.0</version>
  108.        </plugin>
  109.        <plugin>
  110.          <artifactId>maven-surefire-plugin</artifactId>
  111.          <version>2.22.1</version>
  112.        </plugin>
  113.        <plugin>
  114.          <artifactId>maven-jar-plugin</artifactId>
  115.          <version>3.0.2</version>
  116.        </plugin>
  117.        <plugin>
  118.          <artifactId>maven-install-plugin</artifactId>
  119.          <version>2.5.2</version>
  120.        </plugin>
  121.        <plugin>
  122.          <artifactId>maven-deploy-plugin</artifactId>
  123.          <version>2.8.2</version>
  124.        </plugin>
  125.        <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  126.        <plugin>
  127.          <artifactId>maven-site-plugin</artifactId>
  128.          <version>3.7.1</version>
  129.        </plugin>
  130.        <plugin>
  131.          <artifactId>maven-project-info-reports-plugin</artifactId>
  132.          <version>3.0.0</version>
  133.        </plugin>
  134.      </plugins>
  135.    </pluginManagement>
  136.  </build>
  137. </project>
  138.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement