pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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</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.springframework.boot</groupId>
  59. <artifactId>spring-boot-devtools</artifactId>
  60. <scope>runtime</scope>
  61. <optional>true</optional>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.h2database</groupId>
  65. <artifactId>h2</artifactId>
  66. <scope>runtime</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.mariadb.jdbc</groupId>
  70. <artifactId>mariadb-java-client</artifactId>
  71. <scope>runtime</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.sonarsource.scanner.maven</groupId>
  75. <artifactId>sonar-maven-plugin</artifactId>
  76. <version>5.0.0.4389</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.hibernate.validator</groupId>
  80. <artifactId>hibernate-validator</artifactId>
  81. <version>8.0.0.Final</version>
  82. </dependency>
  83. <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
  84. <dependency>
  85. <groupId>org.apache.logging.log4j</groupId>
  86. <artifactId>log4j-core</artifactId>
  87. <version>2.24.3</version>
  88. </dependency>
  89. <!-- https://mvnrepository.com/artifact/junit/junit -->
  90. <dependency>
  91. <groupId>junit</groupId>
  92. <artifactId>junit</artifactId>
  93. <version>4.13.2</version>
  94. <scope>test</scope>
  95. </dependency>
  96. <!-- https://mvnrepository.com/artifact/org.testng/testng -->
  97. <dependency>
  98. <groupId>org.testng</groupId>
  99. <artifactId>testng</artifactId>
  100. <version>7.11.0</version>
  101. <scope>test</scope>
  102. </dependency>
  103. </dependencies>
  104. <build>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.jacoco</groupId>
  108. <artifactId>jacoco-maven-plugin</artifactId>
  109. <version>0.8.12</version>
  110. <executions>
  111. <execution>
  112. <goals>
  113. <goal>prepare-agent</goal>
  114. </goals>
  115. </execution>
  116. <execution>
  117. <id>report</id>
  118. <phase>prepare-package</phase>
  119. <goals>
  120. <goal>report</goal>
  121. </goals>
  122. </execution>
  123. </executions>
  124. </plugin>
  125. <plugin>
  126. <groupId>org.pitest</groupId>
  127. <artifactId>pitest-maven</artifactId>
  128. <version>1.18.1</version>
  129. <dependencies>
  130. <dependency>
  131. <groupId>org.pitest</groupId>
  132. <artifactId>pitest-junit5-plugin</artifactId>
  133. <version>1.2.2</version>
  134. </dependency>
  135. </dependencies>
  136. </plugin>
  137. </plugins>
  138. </build>
  139. </project>