Advertisement
tadeuespindola

pom.xml - André Roberto Bronca

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