Advertisement
tadeuespindola

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

Mar 16th, 2023
1,116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.06 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.  
  6.     <groupId>br.com.tadeudeveloper.systemregistrationslaunches</groupId>
  7.     <artifactId>system-registrations-launches-jdev-tadeu</artifactId>
  8.     <version>1.0</version>
  9.     <packaging>jar</packaging>
  10.  
  11.     <name>system-registrations-launches-jdev-tadeu</name>
  12.     <url>http://maven.apache.org</url>
  13.  
  14.     <properties>
  15.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16.     </properties>
  17.  
  18.     <dependencies>
  19.  
  20.         <dependency>
  21.             <groupId>org.hibernate</groupId>
  22.             <artifactId>hibernate-core</artifactId>
  23.             <version>5.4.1.Final</version>
  24.             <scope>compile</scope>
  25.         </dependency>
  26.  
  27.         <dependency>
  28.             <groupId>org.hibernate</groupId>
  29.             <artifactId>hibernate-entitymanager</artifactId>
  30.             <version>5.4.1.Final</version>
  31.             <scope>compile</scope>
  32.         </dependency>
  33.  
  34.         <dependency>
  35.             <groupId>org.postgresql</groupId>
  36.             <artifactId>postgresql</artifactId>
  37.             <version>42.2.5</version>
  38.             <scope>compile</scope>
  39.         </dependency>      
  40.  
  41.         <dependency>
  42.             <groupId>junit</groupId>
  43.             <artifactId>junit</artifactId>
  44.             <version>4.12</version>
  45.             <scope>test</scope>
  46.         </dependency>
  47.  
  48.         <dependency>
  49.             <groupId>com.sun.faces</groupId>
  50.             <artifactId>jsf-api</artifactId>
  51.             <version>2.2.14</version>
  52.             <scope>compile</scope>
  53.         </dependency>
  54.  
  55.         <dependency>
  56.             <groupId>com.sun.faces</groupId>
  57.             <artifactId>jsf-impl</artifactId>
  58.             <version>2.2.14</version>
  59.             <scope>compile</scope>
  60.         </dependency>      
  61.  
  62.         <dependency>
  63.             <groupId>javax.servlet</groupId>
  64.             <artifactId>jstl</artifactId>
  65.             <version>1.2</version>
  66.             <scope>test</scope>
  67.         </dependency>
  68.  
  69.         <dependency>
  70.             <groupId>org.hibernate</groupId>
  71.             <artifactId>hibernate-validator</artifactId>
  72.             <version>6.0.13.Final</version>
  73.         </dependency>
  74.  
  75.         <dependency>
  76.             <groupId>org.jboss.weld.servlet</groupId>
  77.             <artifactId>weld-servlet</artifactId>
  78.             <version>2.2.9.Final</version>
  79.             <scope>compile</scope>
  80.         </dependency>
  81.  
  82.         <dependency>
  83.             <groupId>org.jboss</groupId>
  84.             <artifactId>jandex</artifactId>
  85.             <version>1.2.3.Final</version>
  86.         </dependency>
  87.  
  88.         <dependency>
  89.             <groupId>com.google.code.gson</groupId>
  90.             <artifactId>gson</artifactId>
  91.             <version>2.8.5</version>
  92.         </dependency>
  93.  
  94.         <dependency>
  95.             <groupId>javax.servlet</groupId>
  96.             <artifactId>javax.servlet-api</artifactId>
  97.             <version>3.1.0</version>
  98.             <scope>provided</scope>
  99.         </dependency>
  100.        
  101.         <dependency>
  102.             <groupId>org.hibernate</groupId>
  103.             <artifactId>hibernate-c3p0</artifactId>
  104.             <version>5.4.1.Final</version>         
  105.         </dependency>
  106.  
  107.     </dependencies>
  108.  
  109.     <build>
  110.         <plugins>
  111.             <plugin>
  112.                 <groupId>org.apache.maven.plugins</groupId>
  113.                 <artifactId>maven-compiler-plugin</artifactId>
  114.                 <version>3.7.0</version>
  115.                 <configuration>
  116.                     <source>8</source>
  117.                     <target>8</target>
  118.                 </configuration>
  119.             </plugin>
  120.         </plugins>
  121.     </build>
  122.  
  123. </project>
  124.  
Tags: pom maven
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement