Advertisement
tadeuespindola

kleber-jdev-pom-suporte

Feb 28th, 2023
1,098
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.84 KB | Help | 0 0
  1. <project
  2. xmlns="http://maven.apache.org/POM/4.0.0"
  3. 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.  
  6.     <modelVersion>4.0.0</modelVersion>
  7.  
  8.     <groupId>meuprimeiroprojetojsf</groupId>
  9.     <artifactId>projetojsf</artifactId>
  10.     <version>0.0.1-SNAPSHOT</version>
  11.    
  12.     <packaging>jar</packaging>
  13.  
  14.     <name>meuprimeiroprojetojsf</name>
  15.     <url>http://maven.apache.org</url>
  16.  
  17.     <properties>
  18.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19.     </properties>
  20.  
  21.     <dependencies>
  22.         <dependency>
  23.             <groupId>jstl</groupId>
  24.             <artifactId>jstl</artifactId>
  25.             <version>1.2</version>
  26.         </dependency>
  27.        
  28.         <dependency>
  29.             <groupId>junit</groupId>
  30.             <artifactId>junit</artifactId>
  31.             <version>4.12</version>
  32.             <scope>test</scope>
  33.         </dependency>
  34.  
  35.         <dependency>
  36.             <groupId>com.sun.faces</groupId>
  37.             <artifactId>jsf-api</artifactId>
  38.             <version>2.1.20</version>
  39.             <scope>compile</scope>
  40.         </dependency>
  41.  
  42.         <dependency>
  43.             <groupId>com.sun.faces</groupId>
  44.             <artifactId>jsf-impl</artifactId>
  45.             <version>2.1.20</version>
  46.             <scope>compile</scope>
  47.         </dependency>
  48.  
  49.         <dependency>
  50.             <groupId>org.hibernate</groupId>
  51.             <artifactId>hibernate-core</artifactId>
  52.             <version>4.3.8.Final</version>
  53.             <scope>compile</scope>
  54.         </dependency>
  55.  
  56.         <dependency>
  57.             <groupId>org.hibernate</groupId>
  58.             <artifactId>hibernate-entitymanager</artifactId>
  59.             <version>4.3.8.Final</version>
  60.             <scope>compile</scope>
  61.         </dependency>
  62.  
  63.         <dependency>
  64.             <groupId>org.postgresql</groupId>
  65.             <artifactId>postgresql</artifactId>
  66.             <version>42.2.12</version>
  67.         </dependency>
  68.  
  69.         <dependency>
  70.             <groupId>javax.enterprise</groupId>
  71.             <artifactId>cdi-api</artifactId>
  72.             <version>1.2</version>
  73.         </dependency>
  74.  
  75.         <dependency>
  76.             <groupId>javax.transaction</groupId>
  77.             <artifactId>jta</artifactId>
  78.             <version>1.1</version>
  79.         </dependency>
  80.  
  81.         <dependency>
  82.             <groupId>org.jboss</groupId>
  83.             <artifactId>jandex</artifactId>
  84.             <version>2.2.2.Final</version>
  85.         </dependency>
  86.  
  87.         <dependency>
  88.             <groupId>dom4j</groupId>
  89.             <artifactId>dom4j</artifactId>
  90.             <version>1.6.1</version>
  91.         </dependency>
  92.  
  93.         <dependency>
  94.             <groupId>org.antlr</groupId>
  95.             <artifactId>antlr-complete</artifactId>
  96.             <version>3.5.2</version>
  97.         </dependency>
  98.  
  99.         <dependency>
  100.             <groupId>javax.servlet</groupId>
  101.             <artifactId>servlet-api</artifactId>
  102.             <version>3.0-alpha-1</version>
  103.             <scope>provided</scope>
  104.         </dependency>
  105.     </dependencies>
  106.    
  107.     <build>
  108.         <plugins>
  109.             <plugin>
  110.                 <groupId>org.apache.maven.plugins</groupId>
  111.                 <artifactId>maven-compiler-plugin</artifactId>
  112.                 <version>3.7.0</version>
  113.                 <configuration>
  114.                     <source>8</source>
  115.                     <target>8</target>
  116.                 </configuration>
  117.             </plugin>
  118.         </plugins>
  119.     </build>
  120.  
  121. </project>
Tags: pom jdev maven
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement