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>
|
|
|
|
<version>1.0.2-SNAPSHOT</version>
|
2018-08-14 07:21:56 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>did-server</artifactId>
|
|
|
|
|
|
|
|
<name>did-server</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2021-01-22 07:40:02 +00:00
|
|
|
<groupId>io.github.ehlxr</groupId>
|
2021-02-09 09:36:11 +00:00
|
|
|
<artifactId>did-core</artifactId>
|
2018-08-14 07:21:56 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<configuration>
|
|
|
|
<transformers>
|
2021-01-21 09:43:41 +00:00
|
|
|
<transformer
|
|
|
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
2021-01-22 07:40:02 +00:00
|
|
|
<mainClass>io.github.ehlxr.did.ServerStarter</mainClass>
|
2018-08-14 07:21:56 +00:00
|
|
|
</transformer>
|
|
|
|
</transformers>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2021-01-21 09:43:41 +00:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-01-21 14:05:51 +00:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.github</groupId>
|
|
|
|
<artifactId>site-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
<message/>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-08-14 07:21:56 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|