2016-12-01 11:38:15 +02:00
|
|
|
<!--
|
|
|
|
|
|
2023-01-31 10:43:56 +02:00
|
|
|
Copyright © 2016-2023 The Thingsboard Authors
|
2016-12-01 11:38:15 +02:00
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
<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>org.thingsboard</groupId>
|
2023-03-10 14:45:49 +01:00
|
|
|
<version>3.6.0-SNAPSHOT</version>
|
2016-12-05 17:03:59 +02:00
|
|
|
<artifactId>thingsboard</artifactId>
|
2016-12-01 11:38:15 +02:00
|
|
|
</parent>
|
|
|
|
|
<artifactId>common</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
|
|
<name>Thingsboard Server Commons</name>
|
2017-12-05 15:19:37 +02:00
|
|
|
<url>https://thingsboard.io</url>
|
2016-12-01 11:38:15 +02:00
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<main.dir>${basedir}/..</main.dir>
|
|
|
|
|
</properties>
|
|
|
|
|
<modules>
|
|
|
|
|
<module>data</module>
|
2019-07-25 18:37:29 +03:00
|
|
|
<module>util</module>
|
2016-12-01 11:38:15 +02:00
|
|
|
<module>message</module>
|
2020-06-03 19:33:49 +03:00
|
|
|
<module>actor</module>
|
2018-09-26 14:54:59 +03:00
|
|
|
<module>queue</module>
|
2018-10-17 20:49:35 +03:00
|
|
|
<module>transport</module>
|
2019-07-26 09:00:57 +03:00
|
|
|
<module>dao-api</module>
|
2021-08-06 14:29:54 +03:00
|
|
|
<module>cluster-api</module>
|
2020-07-10 10:47:19 +03:00
|
|
|
<module>stats</module>
|
2021-02-26 14:16:34 +02:00
|
|
|
<module>cache</module>
|
2021-04-09 13:06:43 +03:00
|
|
|
<module>coap-server</module>
|
2020-03-03 12:25:44 +02:00
|
|
|
<module>edge-api</module>
|
2022-05-18 10:40:02 +03:00
|
|
|
<module>version-control</module>
|
2022-10-17 16:36:57 +03:00
|
|
|
<module>script</module>
|
2016-12-01 11:38:15 +02:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
</project>
|