pom.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. <parent>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <groupId>org.springframework.boot</groupId>
  9. <version>2.0.1.RELEASE</version>
  10. </parent>
  11. <groupId>org.brynhild</groupId>
  12. <artifactId>com-brynhild-parent</artifactId>
  13. <packaging>pom</packaging>
  14. <version>1.0</version>
  15. <modules>
  16. <module>brynhild_common</module>
  17. <module>brynhild_test</module>
  18. </modules>
  19. <properties>
  20. <maven.compiler.source>8</maven.compiler.source>
  21. <maven.compiler.target>8</maven.compiler.target>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.projectlombok</groupId>
  26. <artifactId>lombok</artifactId>
  27. <version>1.18.4</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-test</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. </dependencies>
  39. <repositories>
  40. <repository>
  41. <id>spring-snapshots</id>
  42. <name>Spring Snapshots</name>
  43. <url>https://repo.spring.io/snapshot</url>
  44. <snapshots>
  45. <enabled>true</enabled>
  46. </snapshots>
  47. </repository>
  48. <repository>
  49. <id>spring-milestones</id>
  50. <name>Spring Milestones</name>
  51. <url>https://repo.spring.io/milestone</url>
  52. <snapshots>
  53. <enabled>false</enabled>
  54. </snapshots>
  55. </repository>
  56. </repositories>
  57. <pluginRepositories>
  58. <pluginRepository>
  59. <id>spring-snapshots</id>
  60. <name>Spring Snapshots</name>
  61. <url>https://repo.spring.io/snapshot</url>
  62. <snapshots>
  63. <enabled>true</enabled>
  64. </snapshots>
  65. </pluginRepository>
  66. <pluginRepository>
  67. <id>spring-milestones</id>
  68. <name>Spring Milestones</name>
  69. <url>https://repo.spring.io/milestone</url>
  70. <snapshots>
  71. <enabled>false</enabled>
  72. </snapshots>
  73. </pluginRepository>
  74. </pluginRepositories>
  75. <dependencyManagement>
  76. <dependencies>
  77. <dependency>
  78. <groupId>org.springframework.cloud</groupId>
  79. <artifactId>spring-cloud-dependencies</artifactId>
  80. <version>Finchley.SR2</version>
  81. <type>pom</type>
  82. <scope>import</scope>
  83. </dependency>
  84. </dependencies>
  85. </dependencyManagement>
  86. </project>