did/did-common/pom.xml

49 lines
1.5 KiB
XML
Raw Normal View History

2018-08-14 07:21:56 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2021-02-07 14:11:59 +00:00
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2018-08-14 07:21:56 +00:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
2021-01-22 07:40:02 +00:00
<artifactId>did-parent</artifactId>
<groupId>io.github.ehlxr</groupId>
2021-02-13 04:34:46 +00:00
<version>1.1.1-SNAPSHOT</version>
2018-08-14 07:21:56 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>did-common</artifactId>
<name>did-common</name>
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
2021-02-07 10:21:08 +00:00
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
2018-08-14 07:21:56 +00:00
</dependencies>
2021-01-21 09:43:41 +00:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
2021-01-21 14:05:51 +00:00
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
</plugin>
2021-01-21 09:43:41 +00:00
</plugins>
</build>
</project>