Advertisement
tadeuespindola

pom-suporte-jdev-aluno-vinicius

Sep 28th, 2023
817
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.99 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.     <groupId>curso-jsp</groupId>
  6.     <artifactId>curso-jsp</artifactId>
  7.     <version>0.0.1-SNAPSHOT</version>
  8.     <packaging>war</packaging>
  9.     <name>curso-jsp</name>
  10.     <description>curso jsp jdev treinamento</description>
  11.  
  12.     <dependencies>
  13.         <dependency>
  14.             <groupId>org.postgresql</groupId>
  15.             <artifactId>postgresql</artifactId>
  16.             <version>42.2.22</version>
  17.         </dependency>
  18.  
  19.         <dependency>
  20.             <groupId>com.fasterxml.jackson.core</groupId>
  21.             <artifactId>jackson-databind</artifactId>
  22.             <version>2.13.0</version>
  23.         </dependency>
  24.        
  25.         <dependency>
  26.             <groupId>org.glassfish.web</groupId>
  27.             <artifactId>jakarta.servlet.jsp.jstl</artifactId>
  28.             <version>2.0.0</version>
  29.         </dependency>
  30.    
  31.         <dependency>
  32.             <groupId>net.sf.jasperreports</groupId>
  33.             <artifactId>jasperreports</artifactId>
  34.             <version>6.18.1</version>
  35.         </dependency>
  36.  
  37.         <dependency>
  38.             <groupId>tomcat</groupId>
  39.             <artifactId>tomcat-util</artifactId>
  40.             <version>5.5.23</version>
  41.         </dependency>
  42.        
  43.         <dependency>
  44.             <groupId>org.apache.tomcat</groupId>
  45.             <artifactId>tomcat-coyote</artifactId>
  46.             <version>10.1.0-M5</version>
  47.         </dependency>
  48.        
  49.         <dependency>
  50.             <groupId>org.apache.commons</groupId>
  51.             <artifactId>commons-compress</artifactId>
  52.             <version>1.21</version>
  53.         </dependency>
  54.  
  55.         <dependency>
  56.             <groupId>org.apache.poi</groupId>
  57.             <artifactId>poi</artifactId>
  58.             <version>3.17</version>
  59.         </dependency>
  60.     </dependencies>
  61.  
  62.     <build>
  63.         <plugins>
  64.             <plugin>
  65.                 <artifactId>maven-compiler-plugin</artifactId>
  66.                 <version>3.8.1</version>
  67.                 <configuration>
  68.                     <release>11</release>
  69.                 </configuration>
  70.             </plugin>
  71.             <plugin>
  72.                 <artifactId>maven-war-plugin</artifactId>
  73.                 <version>3.2.3</version>
  74.             </plugin>
  75.         </plugins>
  76.     </build>
  77.  
  78. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement