forked from noi-techpark/bdp-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
39 lines (33 loc) · 1.32 KB
/
pom.xml
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
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2018 IDM Südtirol - Alto Adige ([email protected])
Copyright © 2019 NOI Techpark - Südtirol / Alto Adige ([email protected])
SPDX-License-Identifier: GPL-3.0-only
-->
<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.opendatahub.timeseries.bdp</groupId>
<artifactId>core</artifactId>
<version>9.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>jar</packaging>
<groupId>com.opendatahub.timeseries.bdp</groupId>
<artifactId>dto</artifactId>
<description>Data Transport Objects for an object-relational mapping</description>
<dependencies>
<!-- Generator for UUIDs out of a key/value map -->
<dependency>
<groupId>com.fasterxml.uuid</groupId>
<artifactId>java-uuid-generator</artifactId>
<version>4.3.0</version>
</dependency>
<!-- API Model Annotations in DTOs -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>3.0.0</version>
</dependency>
</dependencies>
</project>