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.

117 lines
3.3 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. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-mail</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.google.code.gson</groupId>
  87. <artifactId>gson</artifactId>
  88. <version>2.8.5</version>
  89. <scope>provided</scope>
  90. </dependency>
  91. </dependencies>
  92. <build>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-maven-plugin</artifactId>
  97. <configuration>
  98. <excludes>
  99. <exclude>
  100. <groupId>org.projectlombok</groupId>
  101. <artifactId>lombok</artifactId>
  102. </exclude>
  103. </excludes>
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>