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.

105 lines
3.0 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-data-jpa</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-security</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.postgresql</groupId>
  34. <artifactId>postgresql</artifactId>
  35. <scope>runtime</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. <optional>true</optional>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-test</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.security</groupId>
  49. <artifactId>spring-security-test</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <!-- Automated JSON API documentation for API's built with Spring -->
  54. <groupId>io.springfox</groupId>
  55. <artifactId>springfox-swagger2</artifactId>
  56. <version>2.9.2</version>
  57. </dependency>
  58. <dependency>
  59. <!-- Generate beautiful documentation from a Swagger-compliant API. -->
  60. <groupId>io.springfox</groupId>
  61. <artifactId>springfox-swagger-ui</artifactId>
  62. <version>2.9.2</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>javax.validation</groupId>
  66. <artifactId>validation-api</artifactId>
  67. <version>1.1.0.Final</version>
  68. </dependency>
  69. <dependency>
  70. <!-- JSON Web Token Support -->
  71. <groupId>io.jsonwebtoken</groupId>
  72. <artifactId>jjwt</artifactId>
  73. <version>0.9.1</version>
  74. </dependency>
  75. <dependency>
  76. <!-- Model Mapper -->
  77. <groupId>org.modelmapper</groupId>
  78. <artifactId>modelmapper</artifactId>
  79. <version>2.3.5</version>
  80. </dependency>
  81. </dependencies>
  82. <build>
  83. <plugins>
  84. <plugin>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-maven-plugin</artifactId>
  87. <configuration>
  88. <excludes>
  89. <exclude>
  90. <groupId>org.projectlombok</groupId>
  91. <artifactId>lombok</artifactId>
  92. </exclude>
  93. </excludes>
  94. </configuration>
  95. </plugin>
  96. </plugins>
  97. </build>
  98. </project>