<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>
		<groupId>com.holon-platform</groupId>
		<artifactId>parent</artifactId>
		<version>2.0.0</version>
	</parent>

	<artifactId>platform-root</artifactId>
	<version>6.0.0</version>

	<packaging>pom</packaging>

	<name>${project.groupId}:${project.artifactId}</name>
	<description>Holon platform root pom</description>

	<url>https://holon-platform.com</url>

	<organization>
		<name>The Holon Platform</name>
		<url>https://holon-platform.com</url>
	</organization>

	<licenses>
		<license>
			<name>Apache License Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<developers>
		<developer>
			<name>Holon development team</name>
			<email>dev@holon-platform.com</email>
			<organization>The Holon Platform</organization>
			<organizationUrl>https://holon-platform.com</organizationUrl>
		</developer>
	</developers>

	<issueManagement>
		<url>https://github.com/holon-platform/platform/issues</url>
		<system>GitHub Issues</system>
	</issueManagement>

	<scm>
		<connection>scm:git:https://github.com/holon-platform/platform.git</connection>
		<url>https://github.com/holon-platform/platform</url>
		<developerConnection>
			scm:git:https://github.com/holon-platform/platform.git</developerConnection>
		<tag>6.0.0</tag>
	</scm>

	<properties>

		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

		<maven.compiler.release>21</maven.compiler.release>

		<maven.javadoc.skip>true</maven.javadoc.skip>

		<!-- pre-release package name -->
		<bintray.package>platform</bintray.package>

		<!-- Core -->
		<holon.core.version>6.0.0</holon.core.version>
		<!-- Reactor -->
		<holon.reactor.version>6.0.0</holon.reactor.version>
		<!-- JSON -->
		<holon.json.version>6.0.0</holon.json.version>
		<!-- JAX-RS -->
		<holon.jaxrs.version>6.0.0</holon.jaxrs.version>
		<!-- JDBC -->
		<holon.jdbc.version>6.0.0</holon.jdbc.version>
		<!-- JPA -->
		<holon.jpa.version>6.0.0</holon.jpa.version>
		<!-- JDBC Datastore -->
		<holon.jdbc.datastore.version>6.0.0</holon.jdbc.datastore.version>
		<!-- JPA Datastore -->
		<holon.jpa.datastore.version>6.0.0</holon.jpa.datastore.version>
		<!-- MongoDB Datastore -->
		<holon.mongo.datastore.version>6.0.0</holon.mongo.datastore.version>
		<!-- Vaadin Flow -->
		<holon.vaadin.flow.version>6.0.0</holon.vaadin.flow.version>

		<!-- JPA Datastore QueryDSL -->
		<holon.jpa.datastore.querydsl.version>5.7.0</holon.jpa.datastore.querydsl.version>
		<!-- Vaadin -->
		<holon.vaadin.version>5.4.0</holon.vaadin.version>
		<!-- Vaadin7 -->
		<holon.vaadin7.version>5.2.4</holon.vaadin7.version>

	</properties>

	<modules>
		<module>documentation</module>
		<module>bom</module>
	</modules>

</project>