pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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.5.7</version>
  13. <type>pom</type>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <groupId>scot.carricksoftware</groupId>
  17. <artifactId>grants</artifactId>
  18. <version>0.0.1-SNAPSHOT</version>
  19. <name>grants</name>
  20. <description>grants</description>
  21. <url/>
  22. <licenses>
  23. <license/>
  24. </licenses>
  25. <developers>
  26. <developer/>
  27. </developers>
  28. <scm>
  29. <connection/>
  30. <developerConnection/>
  31. <tag/>
  32. <url/>
  33. </scm>
  34. <properties>
  35. <java.version>17</java.version>
  36. <sonar.host.url>http://git.carricksoftware.co.uk:9000/</sonar.host.url>
  37. <sonar.login>sqa_4d27bbd7a90f8e32419fa09b3b4eaf7d6e852f7f</sonar.login>
  38. </properties>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-data-jpa</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-web</artifactId>
  51. </dependency>
  52. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-test</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.pitest</groupId>
  60. <artifactId>pitest-junit5-plugin</artifactId>
  61. <version>1.2.2</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-devtools</artifactId>
  66. <scope>runtime</scope>
  67. <optional>true</optional>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.h2database</groupId>
  71. <artifactId>h2</artifactId>
  72. <scope>runtime</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.mariadb.jdbc</groupId>
  76. <artifactId>mariadb-java-client</artifactId>
  77. <scope>runtime</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.sonarsource.scanner.maven</groupId>
  81. <artifactId>sonar-maven-plugin</artifactId>
  82. <version>5.0.0.4389</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.hibernate.validator</groupId>
  86. <artifactId>hibernate-validator</artifactId>
  87. <version>8.0.0.Final</version>
  88. </dependency>
  89. <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
  90. <dependency>
  91. <groupId>org.apache.logging.log4j</groupId>
  92. <artifactId>log4j-core</artifactId>
  93. <version>2.24.3</version>
  94. </dependency>
  95. <!-- https://mvnrepository.com/artifact/junit/junit -->
  96. <dependency>
  97. <groupId>junit</groupId>
  98. <artifactId>junit</artifactId>
  99. <version>4.13.2</version>
  100. <scope>test</scope>
  101. </dependency>
  102. <!-- https://mvnrepository.com/artifact/org.testng/testng -->
  103. <dependency>
  104. <groupId>org.testng</groupId>
  105. <artifactId>testng</artifactId>
  106. <version>7.11.0</version>
  107. <scope>test</scope>
  108. </dependency>
  109. <!-- https://mvnrepository.com/artifact/org.liquibase.ext/liquibase-hibernate6 -->
  110. <dependency>
  111. <groupId>org.liquibase.ext</groupId>
  112. <artifactId>liquibase-hibernate6</artifactId>
  113. <version>5.0.1</version>
  114. <scope>runtime</scope>
  115. </dependency>
  116. </dependencies>
  117. <build>
  118. <plugins>
  119. <plugin>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-maven-plugin</artifactId>
  122. <version>3.4.5</version>
  123. </plugin>
  124. <plugin>
  125. <groupId>org.jacoco</groupId>
  126. <artifactId>jacoco-maven-plugin</artifactId>
  127. <version>0.8.12</version>
  128. <executions>
  129. <execution>
  130. <goals>
  131. <goal>prepare-agent</goal>
  132. </goals>
  133. </execution>
  134. <execution>
  135. <id>report</id>
  136. <phase>prepare-package</phase>
  137. <goals>
  138. <goal>report</goal>
  139. </goals>
  140. </execution>
  141. </executions>
  142. </plugin>
  143. <plugin>
  144. <groupId>org.pitest</groupId>
  145. <artifactId>pitest-maven</artifactId>
  146. <version>1.18.1</version>
  147. <dependencies>
  148. <dependency>
  149. <groupId>org.pitest</groupId>
  150. <artifactId>pitest-junit5-plugin</artifactId>
  151. <version>1.2.2</version>
  152. </dependency>
  153. </dependencies>
  154. </plugin>
  155. <plugin>
  156. <groupId>org.liquibase</groupId>
  157. <artifactId>liquibase-maven-plugin</artifactId>
  158. <version>4.31.1</version>
  159. <configuration>
  160. <changeLogFile>src/main/resources/db/changelog/master.xml</changeLogFile>
  161. <outputChangeLogFile>src/main/resources/db/changelog/migration/1.0_init.postgresql.sql
  162. </outputChangeLogFile>
  163. <propertyFile>src/main/resources/liquibase.properties</propertyFile>
  164. </configuration>
  165. </plugin>
  166. </plugins>
  167. </build>
  168. </project>