136 lines
4.4 KiB
XML
136 lines
4.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>ru.kirillius</groupId>
|
|
<artifactId>XCP</artifactId>
|
|
<version>1.0.0.0</version>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>api</module>
|
|
<module>api-spec-generator</module>
|
|
<module>database</module>
|
|
<module>core</module>
|
|
<module>rpc</module>
|
|
<module>web-server</module>
|
|
<module>app</module>
|
|
<module>logging</module>
|
|
<module>web-ui</module>
|
|
<module>api-sandbox</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
<maven.compiler.target>21</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<lombok.version>1.18.40</lombok.version>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>${maven.compiler.source}</source>
|
|
<target>${maven.compiler.target}</target>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>kirillius</id>
|
|
<name>kirillius</name>
|
|
<url>https://repo.kirillius.ru/maven</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>always</updatePolicy>
|
|
<checksumPolicy>fail</checksumPolicy>
|
|
</releases>
|
|
<layout>default</layout>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>ru.kirillius</groupId>-->
|
|
<!-- <artifactId>json-convert</artifactId>-->
|
|
<!-- <version>2.2.0.0</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<version>5.13.0-M2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-core -->
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>5.21.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/de.mkammerer/argon2-jvm -->
|
|
<dependency>
|
|
<groupId>de.mkammerer</groupId>
|
|
<artifactId>argon2-jvm</artifactId>
|
|
<version>2.12</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.assertj/assertj-core -->
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<version>4.0.0-M1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.javatuples</groupId>
|
|
<artifactId>javatuples</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>ru.kirillius.utils</groupId>
|
|
<artifactId>common-logging</artifactId>
|
|
<version>1.3.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>tools.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>3.0.3</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
</project> |