Advertisement
tadeuespindola

fabricio-pom-spring-maven

Dec 26th, 2022
1,563
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.44 KB | Help | 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.  
  5.     <groupId>curso.springboot</groupId>
  6.     <artifactId>springboot</artifactId>
  7.     <version>0.0.1-SNAPSHOT</version>
  8.     <packaging>jar</packaging>
  9.  
  10.     <name>springboot</name>
  11.     <description>Demo project for Spring Boot</description>
  12.  
  13.     <parent>
  14.         <groupId>org.springframework.boot</groupId>
  15.         <artifactId>spring-boot-starter-parent</artifactId>
  16.         <version>2.1.1.RELEASE</version>
  17.         <relativePath /> <!-- lookup parent from repository -->
  18.     </parent>
  19.  
  20.     <properties>
  21.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22.         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  23.         <java.version>11</java.version>
  24.     </properties>
  25.  
  26.     <dependencies>
  27.    
  28.         <dependency>
  29.             <groupId>org.springframework.boot</groupId>
  30.             <artifactId>spring-boot-starter-thymeleaf</artifactId>
  31.         </dependency>
  32.        
  33.         <dependency>
  34.             <groupId>org.springframework.boot</groupId>
  35.             <artifactId>spring-boot-starter-web</artifactId>
  36.         </dependency>
  37.        
  38.         <dependency>
  39.             <groupId>org.springframework.boot</groupId>
  40.             <artifactId>spring-boot-devtools</artifactId>
  41.             <scope>runtime</scope>
  42.         </dependency>
  43.        
  44.         <dependency>
  45.             <groupId>org.springframework.boot</groupId>
  46.             <artifactId>spring-boot-starter-test</artifactId>
  47.             <scope>test</scope>
  48.         </dependency>
  49.        
  50.         <dependency>
  51.             <groupId>org.springframework.boot</groupId>
  52.             <artifactId>spring-boot-starter-jdbc</artifactId>
  53.         </dependency>
  54.        
  55.         <dependency>
  56.             <groupId>org.springframework.boot</groupId>
  57.             <artifactId>spring-boot-starter-data-jpa</artifactId>
  58.             <scope>provided</scope>
  59.         </dependency>
  60.        
  61.         <dependency>
  62.             <groupId>org.postgresql</groupId>
  63.             <artifactId>postgresql</artifactId>
  64.         </dependency>
  65.        
  66.         <dependency>
  67.             <groupId>jakarta.xml.bind</groupId>
  68.             <artifactId>jakarta.xml.bind-api</artifactId>
  69.             <version>2.3.2</version>
  70.         </dependency>
  71.        
  72.         <dependency>
  73.             <groupId>org.glassfish.jaxb</groupId>
  74.             <artifactId>jaxb-runtime</artifactId>
  75.         </dependency>
  76.        
  77.     </dependencies>
  78.  
  79.     <build>
  80.         <plugins>
  81.             <plugin>
  82.                 <groupId>org.springframework.boot</groupId>
  83.                 <artifactId>spring-boot-maven-plugin</artifactId>
  84.             </plugin>
  85.         </plugins>
  86.     </build>
  87.    
  88. </project>
  89.  
Tags: Java pom maven
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement