This repository has been archived by the owner on Dec 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
57 lines (44 loc) · 1.45 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?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/maven-v4_0_0.xsd">
<!-- Parent -->
<parent>
<groupId>xyz.block</groupId>
<artifactId>tbdex-parent</artifactId>
<version>0.0.0-main-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>
<!-- Artifact Configuration -->
<artifactId>tbdex</artifactId>
<name>tbDEX Distribution</name>
<description>Single-POM Definition to export the tbDEX Dependencies in proper scope</description>
<packaging>pom</packaging>
<!-- Properties -->
<properties>
<!-- Versioning -->
</properties>
<!-- Dependencies -->
<dependencies>
<!-- Internal Dependencies -->
<dependency>
<groupId>xyz.block</groupId>
<artifactId>tbdex-httpclient</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>xyz.block</groupId>
<artifactId>tbdex-httpserver</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>xyz.block</groupId>
<artifactId>tbdex-protocol</artifactId>
<version>${project.version}</version>
</dependency>
<!-- External -->
</dependencies>
<!-- Build Configuration -->
<build>
</build>
</project>