Advertisement
tadeuespindola

gistavo-pom-jdev

Feb 13th, 2023
1,111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.20 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <parent>
  5.         <groupId>org.springframework.boot</groupId>
  6.         <artifactId>spring-boot-starter-parent</artifactId>
  7.         <version>2.1.2.RELEASE</version>
  8.         <relativePath /> <!-- lookup parent from repository -->
  9.     </parent>
  10.     <groupId>curso.api.rest</groupId>
  11.     <artifactId>cursospringrestapi</artifactId>
  12.     <version>0.0.1-SNAPSHOT</version>
  13.     <packaging>jar</packaging>
  14.     <name>cursospringrestapi</name>
  15.     <description>Curso API REST Spring Boot</description>
  16.     <properties>
  17.         <java.version>8</java.version>
  18.         <maven.test.skip>true</maven.test.skip>
  19.     </properties>
  20.  
  21.     <dependencies>
  22.         <dependency>
  23.             <groupId>org.springframework.boot</groupId>
  24.             <artifactId>spring-boot-starter-data-jpa</artifactId>
  25.         </dependency>
  26.  
  27.         <dependency>
  28.             <groupId>org.springframework.boot</groupId>
  29.             <artifactId>spring-boot-starter-jdbc</artifactId>
  30.         </dependency>
  31.  
  32.         <dependency>
  33.             <groupId>org.springframework.boot</groupId>
  34.             <artifactId>spring-boot-starter-data-rest</artifactId>
  35.         </dependency>
  36.  
  37.         <dependency>
  38.             <groupId>org.springframework.boot</groupId>
  39.             <artifactId>spring-boot-starter-web</artifactId>
  40.         </dependency>
  41.  
  42.         <dependency>
  43.             <groupId>org.springframework.boot</groupId>
  44.             <artifactId>spring-boot-devtools</artifactId>
  45.             <scope>runtime</scope>
  46.         </dependency>
  47.  
  48.         <dependency>
  49.             <groupId>org.postgresql</groupId>
  50.             <artifactId>postgresql</artifactId>
  51.         </dependency>
  52.  
  53.         <dependency>
  54.             <groupId>org.springframework.boot</groupId>
  55.             <artifactId>spring-boot-starter-tomcat</artifactId>
  56.             <scope>provided</scope>
  57.         </dependency>
  58.  
  59.         <dependency>
  60.             <groupId>org.springframework.boot</groupId>
  61.             <artifactId>spring-boot-starter-test</artifactId>
  62.             <scope>test</scope>
  63.         </dependency>
  64.  
  65.         <dependency>
  66.             <groupId>org.springframework.security</groupId>
  67.             <artifactId>spring-security-web</artifactId>
  68.         </dependency>
  69.  
  70.         <dependency>
  71.             <groupId>org.springframework.security</groupId>
  72.             <artifactId>spring-security-config</artifactId>
  73.         </dependency>
  74.  
  75.         <dependency>
  76.             <groupId>io.jsonwebtoken</groupId>
  77.             <artifactId>jjwt</artifactId>
  78.             <version>0.7.0</version>
  79.         </dependency>
  80.  
  81.         <dependency>
  82.             <groupId>com.zaxxer</groupId>
  83.             <artifactId>HikariCP</artifactId>
  84.         </dependency>
  85.  
  86.         <dependency>
  87.             <groupId>org.springframework.boot</groupId>
  88.             <artifactId>spring-boot-starter-cache</artifactId>
  89.         </dependency>
  90.  
  91.         <dependency>
  92.             <groupId>com.sun.mail</groupId>
  93.             <artifactId>javax.mail</artifactId>
  94.         </dependency>
  95.        
  96.         <dependency>
  97.             <groupId>net.sf.jasperreports</groupId>
  98.             <artifactId>jasperreports</artifactId>
  99.             <version>6.12.2</version>
  100.         </dependency>      
  101.     <dependency>
  102.             <groupId>com.google.code.gson</groupId>
  103.             <artifactId>gson</artifactId>
  104.         </dependency>
  105.     </dependencies>
  106.  
  107.     <build>
  108.         <plugins>
  109.             <plugin>
  110.                 <groupId>org.springframework.boot</groupId>
  111.                 <artifactId>spring-boot-maven-plugin</artifactId>
  112.             </plugin>
  113.         </plugins>
  114.     </build>
  115.  
  116. </project>
  117.  
Tags: spring pom maven
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement