mirror of
https://github.com/tiennm99/tjahzi.git
synced 2026-09-06 06:17:58 +00:00
38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>pl.tkowalcz.tjahzi</groupId>
|
|
<artifactId>tjahzi-parent</artifactId>
|
|
<version>0.9.33-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<name>core</name>
|
|
<artifactId>core</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.agrona</groupId>
|
|
<artifactId>agrona</artifactId>
|
|
<version>1.22.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-codec-http</artifactId>
|
|
<version>4.1.117.Final</version>
|
|
</dependency>
|
|
|
|
<!-- For the example metric consumer -->
|
|
<dependency>
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
<artifactId>metrics-core</artifactId>
|
|
<version>4.1.17</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|