2021-02-09 09:36:11 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
|
|
|
<artifactId>did-parent</artifactId>
|
|
|
|
<groupId>io.github.ehlxr</groupId>
|
2021-02-11 02:29:38 +00:00
|
|
|
<version>1.1.0-SNAPSHOT</version>
|
2021-02-09 09:36:11 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>did-core</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.ehlxr</groupId>
|
|
|
|
<artifactId>did-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.protostuff</groupId>
|
|
|
|
<artifactId>protostuff-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.protostuff</groupId>
|
|
|
|
<artifactId>protostuff-runtime</artifactId>
|
|
|
|
</dependency>
|
2021-02-13 03:56:06 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.caucho</groupId>
|
|
|
|
<artifactId>hessian</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-02-13 04:33:14 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2021-02-09 09:36:11 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.github</groupId>
|
|
|
|
<artifactId>site-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|