MiraiMC-Velocity
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.dreamvoid</groupId> <artifactId>MiraiMC-Velocity</artifactId> <version>1.8.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <artifactId>MiraiMC</artifactId> <groupId>io.github.dreamvoid</groupId> <version>1.8.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>MiraiMC-Velocity</artifactId> <build> <finalName>${project.artifactId}</finalName> <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> <minimizeJar>false</minimizeJar> <relocations> <relocation> <pattern>com.zaxxer</pattern> <shadedPattern>me.dreamvoid.miraimc.libraries.com.zaxxer</shadedPattern> </relocation> <relocation> <pattern>org.apache</pattern> <shadedPattern>me.dreamvoid.miraimc.libraries.org.apache</shadedPattern> </relocation> </relocations> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*</exclude> <exclude>mozilla/public-suffix-list.txt</exclude> </excludes> </filter> </filters> </configuration> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <copy /> </target> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>papermc</id> <url>https://repo.papermc.io/repository/maven-public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>com.velocitypowered</groupId> <artifactId>velocity-api</artifactId> <version>3.1.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>net.mamoe</groupId> <artifactId>mirai-core-jvm</artifactId> <version>2.16.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.22.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.9</version> <scope>provided</scope> </dependency> </dependencies> </project>