Advertisement
tadeuespindola

pom.xml

Sep 22nd, 2023
1,436
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.93 KB | Help | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2.   <modelVersion>4.0.0</modelVersion>
  3.   <groupId>curso-jsp</groupId>
  4.   <artifactId>curso-jsp</artifactId>
  5.   <version>0.0.1-SNAPSHOT</version>
  6.   <packaging>war</packaging>
  7.   <name>curso-jsp</name>
  8.   <description>curso jsp feito no curso jdev treinamento</description>
  9.  
  10.   <dependencies>
  11.         <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
  12.         <dependency>
  13.             <groupId>org.postgresql</groupId>
  14.             <artifactId>postgresql</artifactId>
  15.             <version>9.4.1212</version>
  16.         </dependency>
  17.        
  18.         <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
  19.         <dependency>
  20.             <groupId>com.fasterxml.jackson.core</groupId>
  21.             <artifactId>jackson-databind</artifactId>
  22.             <version>2.9.8</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>tomcat</groupId>
  33.             <artifactId>tomcat-util</artifactId>
  34.             <version>5.5.23</version>
  35.         </dependency>
  36.         <dependency>
  37.             <groupId>org.apache.tomcat</groupId>
  38.             <artifactId>tomcat-coyote</artifactId>
  39.             <version>10.1.0-M5</version>
  40.         </dependency>
  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>17</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>
Tags: Java pom maven
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement