MiraiMC-Nukkit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.dreamvoid</groupId> <artifactId>MiraiMC-Nukkit</artifactId> <version>1.9-pre3</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.9-pre3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>MiraiMC-Nukkit</artifactId> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <minimizeJar>false</minimizeJar> </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>opencollab-repo-release</id> <url>https://repo.opencollab.dev/maven-releases</url> </repository> <repository> <id>opencollab-repo-snapshot</id> <url>https://repo.opencollab.dev/maven-snapshots</url> </repository> </repositories> <dependencies> <dependency> <groupId>cn.nukkit</groupId> <artifactId>nukkit</artifactId> <version>1.0-SNAPSHOT</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.24.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.16</version> <scope>provided</scope> </dependency> </dependencies> <properties> <maven.compiler.target>8</maven.compiler.target> <maven.compiler.source>8</maven.compiler.source> </properties> </project>