You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

127 lines
3.6 KiB

  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.5.3</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>org.waterproofingdata</groupId>
  12. <artifactId>wpdauth</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>wpdauth</name>
  15. <description>The authenticator for the Waterproofing Data (WPD) Work Packages</description>
  16. <properties>
  17. <java.version>16</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-actuator</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-data-jpa</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-security</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.postgresql</groupId>
  38. <artifactId>postgresql</artifactId>
  39. <scope>runtime</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.projectlombok</groupId>
  43. <artifactId>lombok</artifactId>
  44. <optional>true</optional>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-test</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.security</groupId>
  53. <artifactId>spring-security-test</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <!-- Automated JSON API documentation for API's built with Spring -->
  58. <groupId>io.springfox</groupId>
  59. <artifactId>springfox-swagger2</artifactId>
  60. <version>2.9.2</version>
  61. </dependency>
  62. <dependency>
  63. <!-- Generate beautiful documentation from a Swagger-compliant API. -->
  64. <groupId>io.springfox</groupId>
  65. <artifactId>springfox-swagger-ui</artifactId>
  66. <version>2.9.2</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>javax.validation</groupId>
  70. <artifactId>validation-api</artifactId>
  71. <version>1.1.0.Final</version>
  72. </dependency>
  73. <dependency>
  74. <!-- JSON Web Token Support -->
  75. <groupId>io.jsonwebtoken</groupId>
  76. <artifactId>jjwt</artifactId>
  77. <version>0.9.1</version>
  78. </dependency>
  79. <dependency>
  80. <!-- Model Mapper -->
  81. <groupId>org.modelmapper</groupId>
  82. <artifactId>modelmapper</artifactId>
  83. <version>2.3.5</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-mail</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.google.code.gson</groupId>
  91. <artifactId>gson</artifactId>
  92. <version>2.8.5</version>
  93. <scope>provided</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.jetbrains</groupId>
  97. <artifactId>annotations</artifactId>
  98. <version>24.1.0</version>
  99. </dependency>
  100. </dependencies>
  101. <build>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-maven-plugin</artifactId>
  106. <configuration>
  107. <excludes>
  108. <exclude>
  109. <groupId>org.projectlombok</groupId>
  110. <artifactId>lombok</artifactId>
  111. </exclude>
  112. </excludes>
  113. </configuration>
  114. </plugin>
  115. </plugins>
  116. </build>
  117. </project>