Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 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"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>ro.ase.andrei</groupId>
  8. <artifactId>simple-rest-live</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.0.1.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.projectlombok</groupId>
  24. <artifactId>lombok</artifactId>
  25. <version>1.16.20</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. </dependencies>
  29.  
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-maven-plugin</artifactId>
  35. </plugin>
  36. </plugins>
  37. </build>
  38.  
  39. <repositories>
  40. <repository>
  41. <id>spring-releases</id>
  42. <url>https://repo.spring-io/libs-release</url>
  43. </repository>
  44. </repositories>
  45. <pluginRepositories>
  46. <pluginRepository>
  47. <id>spring-releases</id>
  48. <url>https://repo.spring-io/libs-release</url>
  49. </pluginRepository>
  50. </pluginRepositories>
  51.  
  52. <properties>
  53. <java.version>1.8</java.version>
  54. </properties>
  55.  
  56. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement