Advertisement
tadeuespindola

pom-xml-aluno-anderson-suporte-jdev

Oct 1st, 2023
1,293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.11 KB | Help | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3.   <modelVersion>4.0.0</modelVersion>
  4.   <groupId>cursos-jsp</groupId>
  5.   <artifactId>cursos-jsp</artifactId>
  6.   <packaging>war</packaging>
  7.   <version>0.0.1-SNAPSHOT</version>
  8.   <name>cursos-jsp Maven Webapp</name>
  9.   <url>http://maven.apache.org</url>
  10.    <dependencies>
  11.         <dependency>
  12.             <groupId>com.fasterxml.jackson.core</groupId>
  13.             <artifactId>jackson-databind</artifactId>
  14.             <version>2.13.0</version>
  15.         </dependency>
  16.        
  17.         <dependency>
  18.             <groupId>org.glassfish.web</groupId>
  19.             <artifactId>jakarta.servlet.jsp.jstl</artifactId>
  20.             <version>2.0.0</version>
  21.         </dependency>
  22.    
  23.         <dependency>
  24.             <groupId>net.sf.jasperreports</groupId>
  25.             <artifactId>jasperreports</artifactId>
  26.             <version>6.18.1</version>
  27.         </dependency>
  28.  
  29.         <dependency>
  30.             <groupId>tomcat</groupId>
  31.             <artifactId>tomcat-util</artifactId>
  32.             <version>5.5.23</version>
  33.         </dependency>
  34.        
  35.         <dependency>
  36.             <groupId>org.apache.tomcat</groupId>
  37.             <artifactId>tomcat-coyote</artifactId>
  38.             <version>10.1.0-M5</version>
  39.         </dependency>
  40.        
  41.         <dependency>
  42.             <groupId>org.apache.commons</groupId>
  43.             <artifactId>commons-compress</artifactId>
  44.             <version>1.21</version>
  45.         </dependency>
  46.     </dependencies>
  47.  
  48.     <build>
  49.         <plugins>
  50.             <plugin>
  51.                 <artifactId>maven-compiler-plugin</artifactId>
  52.                 <version>3.8.1</version>
  53.                 <configuration>
  54.                     <release>11</release>
  55.                 </configuration>
  56.             </plugin>
  57.             <plugin>
  58.                 <artifactId>maven-war-plugin</artifactId>
  59.                 <version>3.2.3</version>
  60.             </plugin>
  61.         </plugins>
  62.     </build>
  63. </project>
  64.  
Tags: xml jsp pom maven
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement