pom.xml 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright (c) 2025 Andrew Grant of Carrick Software .
  4. ~ All rights reserved.
  5. -->
  6. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  7. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  8. <modelVersion>4.0.0</modelVersion>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>3.4.0</version>
  13. <relativePath/> <!-- lookup parent from repository -->
  14. </parent>
  15. <groupId>scot.carricksoftware</groupId>
  16. <artifactId>grants-writer</artifactId>
  17. <version>0.0.1-SNAPSHOT</version>
  18. <name>grants</name>
  19. <description>grants</description>
  20. <url/>
  21. <licenses>
  22. <license/>
  23. </licenses>
  24. <developers>
  25. <developer/>
  26. </developers>
  27. <scm>
  28. <connection/>
  29. <developerConnection/>
  30. <tag/>
  31. <url/>
  32. </scm>
  33. <properties>
  34. <java.version>17</java.version>
  35. <sonar.host.url>http://git.carricksoftware.co.uk:9000/</sonar.host.url>
  36. <sonar.login>sqa_4d27bbd7a90f8e32419fa09b3b4eaf7d6e852f7f</sonar.login>
  37. </properties>
  38. <dependencies>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-data-jpa</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-web</artifactId>
  50. </dependency>
  51. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-test</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.pitest</groupId>
  59. <artifactId>pitest-junit5-plugin</artifactId>
  60. <version>1.2.2</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-devtools</artifactId>
  65. <scope>runtime</scope>
  66. <optional>true</optional>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.h2database</groupId>
  70. <artifactId>h2</artifactId>
  71. <scope>runtime</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.mariadb.jdbc</groupId>
  75. <artifactId>mariadb-java-client</artifactId>
  76. <scope>runtime</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.sonarsource.scanner.maven</groupId>
  80. <artifactId>sonar-maven-plugin</artifactId>
  81. <version>5.0.0.4389</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-web</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.hibernate.validator</groupId>
  89. <artifactId>hibernate-validator</artifactId>
  90. <version>8.0.0.Final</version>
  91. </dependency>
  92. <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
  93. <dependency>
  94. <groupId>org.apache.logging.log4j</groupId>
  95. <artifactId>log4j-core</artifactId>
  96. <version>2.24.3</version>
  97. </dependency>
  98. <!-- https://mvnrepository.com/artifact/junit/junit -->
  99. <dependency>
  100. <groupId>junit</groupId>
  101. <artifactId>junit</artifactId>
  102. <version>4.13.2</version>
  103. <scope>test</scope>
  104. </dependency>
  105. <!-- https://mvnrepository.com/artifact/org.testng/testng -->
  106. <dependency>
  107. <groupId>org.testng</groupId>
  108. <artifactId>testng</artifactId>
  109. <version>7.11.0</version>
  110. <scope>test</scope>
  111. </dependency>
  112. </dependencies>
  113. <build>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.jacoco</groupId>
  117. <artifactId>jacoco-maven-plugin</artifactId>
  118. <version>0.8.12</version>
  119. <executions>
  120. <execution>
  121. <goals>
  122. <goal>prepare-agent</goal>
  123. </goals>
  124. </execution>
  125. <execution>
  126. <id>report</id>
  127. <phase>prepare-package</phase>
  128. <goals>
  129. <goal>report</goal>
  130. </goals>
  131. </execution>
  132. </executions>
  133. </plugin>
  134. <plugin>
  135. <groupId>org.pitest</groupId>
  136. <artifactId>pitest-maven</artifactId>
  137. <version>1.18.1</version>
  138. <dependencies>
  139. <dependency>
  140. <groupId>org.pitest</groupId>
  141. <artifactId>pitest-junit5-plugin</artifactId>
  142. <version>1.2.2</version>
  143. </dependency>
  144. </dependencies>
  145. </plugin>
  146. <plugin>
  147. <groupId>org.liquibase</groupId>
  148. <artifactId>liquibase-maven-plugin</artifactId>
  149. <version>4.31.1</version>
  150. <configuration>
  151. <changeLogFile>src/main/resources/db/changelog/master.xml</changeLogFile>
  152. <outputChangeLogFile>src/main/resources/db/changelog/migration/1.0_init.postgresql.sql
  153. </outputChangeLogFile>
  154. <diffChangeLogFile>src/main/resources/db/changelog/migration/_${diff.version}_migrate.sql
  155. </diffChangeLogFile>
  156. <propertyFile>src/main/resources/liquibase.properties</propertyFile>
  157. </configuration>
  158. <dependencies>
  159. <dependency>
  160. <groupId>org.liquibase.ext</groupId>
  161. <artifactId>liquibase-hibernate6</artifactId>
  162. <version>4.31.1</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.springframework.data</groupId>
  166. <artifactId>spring-data-jpa</artifactId>
  167. <version>3.0.2</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>io.hypersistence</groupId>
  171. <artifactId>hypersistence-utils-hibernate-60</artifactId>
  172. <version>3.9.4</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>com.fasterxml.jackson.core</groupId>
  176. <artifactId>jackson-databind</artifactId>
  177. <version>2.14.2</version>
  178. </dependency>
  179. </dependencies>
  180. </plugin>
  181. </plugins>
  182. </build>
  183. </project>