Advertisement
Latinist

Untitled

Apr 9th, 2020
709
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.22 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"
  3.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.     <parent>
  6.         <groupId>org.springframework.boot</groupId>
  7.         <artifactId>spring-boot-starter-parent</artifactId>
  8.         <version>2.2.6.RELEASE</version>
  9.         <relativePath/> <!-- lookup parent from repository -->
  10.     </parent>
  11.     <groupId>com.antonromanov</groupId>
  12.     <artifactId>spring-boot-hello-world</artifactId>
  13.     <version>0.0.1-SNAPSHOT</version>
  14.     <name>spring-boot-hello-world</name>
  15.     <description>Demo project for Spring Boot</description>
  16.  
  17.     <properties>
  18.         <java.version>1.8</java.version>
  19.     </properties>
  20.  
  21.     <dependencies>
  22.         <dependency>
  23.             <groupId>org.springframework.boot</groupId>
  24.             <artifactId>spring-boot-starter</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.postgresql</groupId>
  34.             <artifactId>postgresql</artifactId>
  35.             <version>42.2.12</version>
  36.         </dependency>
  37.  
  38.         <dependency>
  39.             <groupId>org.springframework.boot</groupId>
  40.             <artifactId>spring-boot-starter-test</artifactId>
  41.             <scope>test</scope>
  42.             <exclusions>
  43.                 <exclusion>
  44.                     <groupId>org.junit.vintage</groupId>
  45.                     <artifactId>junit-vintage-engine</artifactId>
  46.                 </exclusion>
  47.             </exclusions>
  48.         </dependency>
  49.         <dependency>
  50.             <groupId>org.springframework.boot</groupId>
  51.             <artifactId>spring-boot-starter-web</artifactId>
  52.         </dependency>
  53.     </dependencies>
  54.  
  55.     <build>
  56.         <plugins>
  57.             <plugin>
  58.                 <groupId>org.springframework.boot</groupId>
  59.                 <artifactId>spring-boot-maven-plugin</artifactId>
  60.             </plugin>
  61.         </plugins>
  62.     </build>
  63.  
  64. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement