MythicMobsLib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>cn.handyplus.lib.mm</groupId>
<artifactId>MythicMobsLib</artifactId>
<version>1.1.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.handyplus.lib.mm</groupId>
<artifactId>MythicMobsParent</artifactId>
<version>1.1.1</version>
</parent>
<artifactId>MythicMobsLib</artifactId>
<version>1.1.1</version>
<description>MythicMobs全版本兼容性lib</description>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE v3.0</name>
<url>https://github.com/handyplus/MythicMobsParent/blob/master/LICENSE</url>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>cn.handyplus.lib.mm</groupId>
<artifactId>MythicMobsHide</artifactId>
<version>${project.parent.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>cn.handyplus.lib.mm</groupId>
<artifactId>MythicMobsMiddle</artifactId>
<version>${project.parent.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>cn.handyplus.lib.mm</groupId>
<artifactId>MythicMobsLow</artifactId>
<version>${project.parent.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>cn.handyplus.lib.mm</groupId>
<artifactId>MythicMobsLibEvent</artifactId>
<version>${project.parent.version}</version>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<artifactSet>
<includes>
<include>cn.handyplus.lib.mm:*:*:*</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
</excludes>
</filter>
</filters>
</configuration>
</plugin>
</plugins>
</build>
</project>