Advertisement
Guest User

pom.xml

a guest
May 4th, 2016
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.73 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.  
  6.     <groupId>org.springframework</groupId>
  7.     <artifactId>gs-rest-service</artifactId>
  8.     <version>0.1.0</version>
  9.     <packaging>war</packaging>
  10.  
  11.     <parent>
  12.         <groupId>org.springframework.boot</groupId>
  13.         <artifactId>spring-boot-starter-parent</artifactId>
  14.         <version>1.3.3.RELEASE</version>
  15.     </parent>
  16.  
  17.     <dependencies>
  18.         <dependency>
  19.             <groupId>org.springframework.boot</groupId>
  20.             <artifactId>spring-boot-starter-web</artifactId>
  21.         </dependency>
  22.         <dependency>
  23.             <groupId>org.springframework.boot</groupId>
  24.             <artifactId>spring-boot-starter-tomcat</artifactId>
  25.             <scope>provided</scope>
  26.         </dependency>
  27.     </dependencies>
  28.  
  29.     <properties>
  30.         <java.version>1.8</java.version>
  31.     </properties>
  32.  
  33.  
  34.     <build>
  35.         <plugins>
  36.             <plugin>
  37.                 <groupId>org.springframework.boot</groupId>
  38.                 <artifactId>spring-boot-maven-plugin</artifactId>
  39.             </plugin>
  40.         </plugins>
  41.     </build>
  42.  
  43.     <repositories>
  44.         <repository>
  45.             <id>spring-releases</id>
  46.             <url>https://repo.spring.io/libs-release</url>
  47.         </repository>
  48.     </repositories>
  49.     <pluginRepositories>
  50.         <pluginRepository>
  51.             <id>spring-releases</id>
  52.             <url>https://repo.spring.io/libs-release</url>
  53.         </pluginRepository>
  54.     </pluginRepositories>
  55. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement