|
@@ -5,152 +5,196 @@
|
|
|
-->
|
|
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
- <parent>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
- <version>3.4.0</version>
|
|
|
- <relativePath/> <!-- lookup parent from repository -->
|
|
|
- </parent>
|
|
|
- <groupId>scot.carricksoftware</groupId>
|
|
|
- <artifactId>grants</artifactId>
|
|
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
- <name>grants</name>
|
|
|
- <description>grants</description>
|
|
|
- <url/>
|
|
|
- <licenses>
|
|
|
- <license/>
|
|
|
- </licenses>
|
|
|
- <developers>
|
|
|
- <developer/>
|
|
|
- </developers>
|
|
|
- <scm>
|
|
|
- <connection/>
|
|
|
- <developerConnection/>
|
|
|
- <tag/>
|
|
|
- <url/>
|
|
|
- </scm>
|
|
|
- <properties>
|
|
|
- <java.version>17</java.version>
|
|
|
- <sonar.host.url>http://git.carricksoftware.co.uk:9000/</sonar.host.url>
|
|
|
- <sonar.login>sqa_4d27bbd7a90f8e32419fa09b3b4eaf7d6e852f7f</sonar.login>
|
|
|
- </properties>
|
|
|
- <dependencies>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
- </dependency>
|
|
|
- <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-test</artifactId>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.pitest</groupId>
|
|
|
- <artifactId>pitest-junit5-plugin</artifactId>
|
|
|
- <version>1.2.2</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-devtools</artifactId>
|
|
|
- <scope>runtime</scope>
|
|
|
- <optional>true</optional>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.h2database</groupId>
|
|
|
- <artifactId>h2</artifactId>
|
|
|
- <scope>runtime</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.mariadb.jdbc</groupId>
|
|
|
- <artifactId>mariadb-java-client</artifactId>
|
|
|
- <scope>runtime</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.sonarsource.scanner.maven</groupId>
|
|
|
- <artifactId>sonar-maven-plugin</artifactId>
|
|
|
- <version>5.0.0.4389</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>org.hibernate.validator</groupId>
|
|
|
- <artifactId>hibernate-validator</artifactId>
|
|
|
- <version>8.0.0.Final</version>
|
|
|
- </dependency>
|
|
|
- <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.logging.log4j</groupId>
|
|
|
- <artifactId>log4j-core</artifactId>
|
|
|
- <version>2.24.3</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- https://mvnrepository.com/artifact/junit/junit -->
|
|
|
- <dependency>
|
|
|
- <groupId>junit</groupId>
|
|
|
- <artifactId>junit</artifactId>
|
|
|
- <version>4.13.2</version>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
- <!-- https://mvnrepository.com/artifact/org.testng/testng -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.testng</groupId>
|
|
|
- <artifactId>testng</artifactId>
|
|
|
- <version>7.11.0</version>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- </dependencies>
|
|
|
- <build>
|
|
|
-
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.jacoco</groupId>
|
|
|
- <artifactId>jacoco-maven-plugin</artifactId>
|
|
|
- <version>0.8.12</version>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <goals>
|
|
|
- <goal>prepare-agent</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- <execution>
|
|
|
- <id>report</id>
|
|
|
- <phase>prepare-package</phase>
|
|
|
- <goals>
|
|
|
- <goal>report</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- </plugin>
|
|
|
-
|
|
|
-
|
|
|
- <plugin>
|
|
|
- <groupId>org.pitest</groupId>
|
|
|
- <artifactId>pitest-maven</artifactId>
|
|
|
- <version>1.18.1</version>
|
|
|
- <dependencies>
|
|
|
- <dependency>
|
|
|
- <groupId>org.pitest</groupId>
|
|
|
- <artifactId>pitest-junit5-plugin</artifactId>
|
|
|
- <version>1.2.2</version>
|
|
|
- </dependency>
|
|
|
- </dependencies>
|
|
|
- </plugin>
|
|
|
-
|
|
|
-
|
|
|
- </plugins>
|
|
|
- </build>
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <parent>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>3.4.0</version>
|
|
|
+ <relativePath/> <!-- lookup parent from repository -->
|
|
|
+ </parent>
|
|
|
+ <groupId>scot.carricksoftware</groupId>
|
|
|
+ <artifactId>grants</artifactId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ <name>grants</name>
|
|
|
+ <description>grants</description>
|
|
|
+ <url/>
|
|
|
+ <licenses>
|
|
|
+ <license/>
|
|
|
+ </licenses>
|
|
|
+ <developers>
|
|
|
+ <developer/>
|
|
|
+ </developers>
|
|
|
+ <scm>
|
|
|
+ <connection/>
|
|
|
+ <developerConnection/>
|
|
|
+ <tag/>
|
|
|
+ <url/>
|
|
|
+ </scm>
|
|
|
+ <properties>
|
|
|
+ <java.version>17</java.version>
|
|
|
+ <sonar.host.url>http://git.carricksoftware.co.uk:9000/</sonar.host.url>
|
|
|
+ <sonar.login>sqa_4d27bbd7a90f8e32419fa09b3b4eaf7d6e852f7f</sonar.login>
|
|
|
+ </properties>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.pitest</groupId>
|
|
|
+ <artifactId>pitest-junit5-plugin</artifactId>
|
|
|
+ <version>1.2.2</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-devtools</artifactId>
|
|
|
+ <scope>runtime</scope>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.h2database</groupId>
|
|
|
+ <artifactId>h2</artifactId>
|
|
|
+ <scope>runtime</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mariadb.jdbc</groupId>
|
|
|
+ <artifactId>mariadb-java-client</artifactId>
|
|
|
+ <scope>runtime</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.sonarsource.scanner.maven</groupId>
|
|
|
+ <artifactId>sonar-maven-plugin</artifactId>
|
|
|
+ <version>5.0.0.4389</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.hibernate.validator</groupId>
|
|
|
+ <artifactId>hibernate-validator</artifactId>
|
|
|
+ <version>8.0.0.Final</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.logging.log4j</groupId>
|
|
|
+ <artifactId>log4j-core</artifactId>
|
|
|
+ <version>2.24.3</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- https://mvnrepository.com/artifact/junit/junit -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>junit</groupId>
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
+ <version>4.13.2</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.testng/testng -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.testng</groupId>
|
|
|
+ <artifactId>testng</artifactId>
|
|
|
+ <version>7.11.0</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+ <build>
|
|
|
+
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.jacoco</groupId>
|
|
|
+ <artifactId>jacoco-maven-plugin</artifactId>
|
|
|
+ <version>0.8.12</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>prepare-agent</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ <execution>
|
|
|
+ <id>report</id>
|
|
|
+ <phase>prepare-package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>report</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.pitest</groupId>
|
|
|
+ <artifactId>pitest-maven</artifactId>
|
|
|
+ <version>1.18.1</version>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.pitest</groupId>
|
|
|
+ <artifactId>pitest-junit5-plugin</artifactId>
|
|
|
+ <version>1.2.2</version>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+
|
|
|
+ <groupId>org.liquibase</groupId>
|
|
|
+ <artifactId>liquibase-maven-plugin</artifactId>
|
|
|
+ <version>4.31.1</version>
|
|
|
+ <configuration>
|
|
|
+ <changeLogFile>src/main/resources/db/changelog/master.xml</changeLogFile>
|
|
|
+ <outputChangeLogFile>src/main/resources/db/changelog/migration/1.0_init.postgresql.sql
|
|
|
+ </outputChangeLogFile>
|
|
|
+ <diffChangeLogFile>src/main/resources/db/changelog/migration/_${diff.version}_migrate.sql
|
|
|
+ </diffChangeLogFile>
|
|
|
+ <propertyFile>src/main/resources/liquibase.properties</propertyFile>
|
|
|
+ </configuration>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.liquibase.ext</groupId>
|
|
|
+ <artifactId>liquibase-hibernate6</artifactId>
|
|
|
+ <version>4.31.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.data</groupId>
|
|
|
+ <artifactId>spring-data-jpa</artifactId>
|
|
|
+ <version>3.0.2</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.hypersistence</groupId>
|
|
|
+ <artifactId>hypersistence-utils-hibernate-60</artifactId>
|
|
|
+ <version>3.9.4</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-databind</artifactId>
|
|
|
+ <version>2.14.2</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
|
|
|
</project>
|