<?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>

	<!-- Parent POM contains all general settings for building and releasing of all JEAF projects. -->
	<parent>
		<groupId>com.anaptecs.jeaf</groupId>
		<artifactId>jeaf-module-project-parent</artifactId>
		<version>2.0.0</version>
	</parent>

	<groupId>com.anaptecs.jeaf.validation</groupId>
	<artifactId>jeaf-validation-api-project</artifactId>
	<version>1.9.0</version>
	<packaging>pom</packaging>
	<name>JEAF Validation API Project</name>
	<description>JEAF Validation API contains a set of classes that provide a common abstraction for topics that are connected with validation. It is not a replacement of Java Bean Validation (JSR 303) but rather a simplified facade e.g. can be used in code that is generated by JEAF Generator.</description>
	<url>https://www.anaptecs.de/jeaf</url>

	<developers>
		<developer>
			<name>JEAF Development Team</name>
			<email>jeaf@anaptecs.ch</email>
			<organization>anaptecs GmbH</organization>
			<organizationUrl>http://www.anaptecs.ch</organizationUrl>
		</developer>
	</developers>


	<scm>
		<connection>scm:git:https://github.com/anaptecs/jeaf-validation-api.git</connection>
		<developerConnection>scm:git:https://github.com/anaptecs/jeaf-validation-api.git</developerConnection>
		<url>https://github.com/anaptecs/jeaf-validation-api</url>
		<tag>v1.9.0</tag>
	</scm>


	<distributionManagement>
		<snapshotRepository>
			<id>github</id>
			<url>https://maven.pkg.github.com/anaptecs/jeaf-validation-api</url>
		</snapshotRepository>
	</distributionManagement>


	<licenses>
		<license>
			<name>The Apache License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
		</license>
	</licenses>


	<properties>
		<jeaf.core.api.version>1.8.0</jeaf.core.api.version>
		<spring.boot.version>4.0.3</spring.boot.version>
		<reactor-bom.version>2025.0.3</reactor-bom.version>
	</properties>


	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>io.projectreactor</groupId>
				<artifactId>reactor-bom</artifactId>
				<version>${reactor-bom.version}</version>
				<type>pom</type>
				<scope>import</scope>
			</dependency>
		</dependencies>
	</dependencyManagement>


	<modules>
		<module>jeaf-validation-api</module>
		<module>jeaf-validation-api-service-provider</module>
		<module>jeaf-validation-api-spring</module>
	</modules>

</project>