Advertisement
tadeuespindola

aluno-fabricio-jdev-pom-xml

Oct 20th, 2022
1,228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.36 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" 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>pos-java-maven-hibernate</groupId>
  7.     <artifactId>pos-java-maven-hibernate</artifactId>
  8.     <version>0.0.1-SNAPSHOT</version>
  9.  
  10.     <name>pos-java-maven-hibernate</name>
  11.     <url>http://www.example.com</url>
  12.  
  13.     <properties>
  14.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15.         <maven.compiler.source>1.8</maven.compiler.source>
  16.         <maven.compiler.target>1.8</maven.compiler.target>
  17.     </properties>
  18.  
  19.     <dependencies>
  20.         <dependency>
  21.             <groupId>junit</groupId>
  22.             <artifactId>junit</artifactId>
  23.             <version>4.12</version>
  24.             <scope>test</scope>
  25.         </dependency>
  26.  
  27.         <dependency>
  28.             <groupId>org.postgresql</groupId>
  29.             <artifactId>postgresql</artifactId>
  30.             <version>9.4.1212</version>
  31.         </dependency>
  32.  
  33.         <dependency>
  34.             <groupId>org.hibernate</groupId>
  35.             <artifactId>hibernate-core</artifactId>
  36.             <version>5.4.1.Final</version>
  37.         </dependency>
  38.         <dependency>
  39.             <groupId>org.hibernate</groupId>
  40.             <artifactId>hibernate-entitymanager</artifactId>
  41.             <version>5.4.1.Final</version>
  42.         </dependency>
  43.  
  44.         <dependency>
  45.             <groupId>javax.xml.bind</groupId>
  46.             <artifactId>jaxb-api</artifactId>
  47.             <version>2.3.1</version>
  48.         </dependency>
  49.         <dependency>
  50.             <groupId>com.sun.xml.bind</groupId>
  51.             <artifactId>jaxb-core</artifactId>
  52.             <version>2.3.0.1</version>
  53.         </dependency>
  54.         <dependency>
  55.             <groupId>com.sun.xml.bind</groupId>
  56.             <artifactId>jaxb-impl</artifactId>
  57.             <version>2.3.2</version>
  58.         </dependency>
  59.        
  60.         <dependency>
  61.             <groupId>com.sun.faces</groupId>
  62.             <artifactId>jsf-api</artifactId>
  63.             <version>2.2.14</version>
  64.             <scope>compile</scope>
  65.         </dependency>
  66.         <dependency>
  67.             <groupId>com.sun.faces</groupId>
  68.             <artifactId>jsf-impl</artifactId>
  69.             <version>2.2.14</version>
  70.             <scope>compile</scope>
  71.         </dependency>
  72.     </dependencies>
  73.  
  74.     <build>
  75.         <plugins>
  76.             <plugin>
  77.                 <groupId>org.apache.maven.plugins</groupId>
  78.                 <artifactId>maven-compiler-plugin</artifactId>
  79.                 <version>3.7.0</version>
  80.                 <configuration>
  81.                     <source>8</source>
  82.                     <target>8</target>
  83.                 </configuration>
  84.             </plugin>
  85.         </plugins>
  86.     </build>
  87.    
  88. </project>
Tags: pom
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement