-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpom.xml
More file actions
102 lines (82 loc) · 3.1 KB
/
pom.xml
File metadata and controls
102 lines (82 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<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.2</version>
</parent>
<artifactId>platform-root</artifactId>
<version>6.0.4-SNAPSHOT</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>HEAD</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.2</holon.core.version>
<!-- Reactor -->
<holon.reactor.version>6.0.2</holon.reactor.version>
<!-- JSON -->
<holon.json.version>6.0.2</holon.json.version>
<!-- JAX-RS -->
<holon.jaxrs.version>6.0.2</holon.jaxrs.version>
<!-- JDBC -->
<holon.jdbc.version>6.0.2</holon.jdbc.version>
<!-- JPA -->
<holon.jpa.version>6.0.2</holon.jpa.version>
<!-- JDBC Datastore -->
<holon.jdbc.datastore.version>6.0.2</holon.jdbc.datastore.version>
<!-- JPA Datastore -->
<holon.jpa.datastore.version>6.0.2</holon.jpa.datastore.version>
<!-- MongoDB Datastore -->
<holon.mongo.datastore.version>6.0.2</holon.mongo.datastore.version>
<!-- Vaadin Flow -->
<holon.vaadin.flow.version>6.0.3</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>