powernukkit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.powernukkit</groupId> <artifactId>powernukkit</artifactId> <version>1.6.0.1-PN</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <name>PowerNukkit</name> <description>A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.</description> <url>https://powernukkit.org</url> <groupId>org.powernukkit</groupId> <artifactId>powernukkit</artifactId> <!-- Version Convention: upstream.major.minor.patch-PN Based on https://semver.org/ but with upstream on front Upstream is the NukkitX major version PN is an indicator that software is running PowerNukkit, it must be present both in releases and snapshot versions --> <version>1.6.0.1-PN</version> <inceptionYear>2020</inceptionYear> <organization> <name>PowerNukkit</name> <url>https://powernukkit.org</url> </organization> <issueManagement> <system>GitHub</system> <url>https://github.com/PowerNukkit/PowerNukkit/issues</url> </issueManagement> <scm> <connection>scm:git:https://github.com/PowerNukkit/PowerNukkit.git</connection> <developerConnection>scm:git:ssh://git@github.com:PowerNukkit/PowerNukkit.git</developerConnection> <url>https://github.com/PowerNukkit/PowerNukkit</url> </scm> <licenses> <license> <name>GNU General Public License, Version 3</name> <url>https://www.gnu.org/licenses/gpl-3.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>PowerNukkit</id> <url>https://powernukkit.org</url> <organization>PowerNukkit</organization> <organizationUrl>https://github.com/PowerNukkit</organizationUrl> </developer> <developer> <id>CloudburstMC</id> <url>https://cloudburstmc.org</url> <organization>CloudburstMC</organization> <organizationUrl>https://github.com/CloudburstMC</organizationUrl> </developer> <developer> <id>Nukkit</id> <organization>Nukkit</organization> <organizationUrl>https://github.com/Nukkit</organizationUrl> </developer> </developers> <contributors> <contributor> <name>PowerNukkit contributors</name> <url>https://github.com/PowerNukkit/PowerNukkit/graphs/contributors</url> </contributor> </contributors> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <junit.jupiter.version>5.7.2</junit.jupiter.version> <mockito.version>3.11.2</mockito.version> <log4j2.version>2.17.1</log4j2.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <jline.version>3.9.0</jline.version> <skipTests>true</skipTests> <skipGpg>true</skipGpg> <sonar.projectKey>PowerNukkit_PowerNukkit</sonar.projectKey> <sonar.organization>powernukkit</sonar.organization> <sonar.host.url>https://sonarcloud.io</sonar.host.url> </properties> <distributionManagement> <repository> <id>powernukkit-releases</id> <name>powernukkit-releases</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>powernukkit-snapshots</id> <name>powernukkit-snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <dependencies> <dependency> <groupId>org.powernukkit.bedrock.network</groupId> <artifactId>raknet</artifactId> <version>1.6.28-PN.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.powernukkit</groupId> <artifactId>powernukkit-tests-junit5</artifactId> <version>0.1.1</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> </exclusion> <exclusion> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.powernukkit.fastutil</groupId> <artifactId>fastutil-lite</artifactId> <version>8.1.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.powernukkit</groupId> <artifactId>version-library</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>30.1.1-jre</version> <scope>compile</scope> <exclusions> <exclusion> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.6</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.28</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.powernukkit.bedrock.leveldb</groupId> <artifactId>bedrock-leveldb</artifactId> <version>0.11.0-PN</version> <scope>compile</scope> <exclusions> <exclusion> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.sentry</groupId> <artifactId>sentry</artifactId> <version>4.3.0</version> <exclusions> <exclusion> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.sentry</groupId> <artifactId>sentry-log4j2</artifactId> <version>4.3.0</version> <exclusions> <exclusion> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </exclusion> <exclusion> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> </exclusion> <exclusion> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.17.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.nimbusds</groupId> <artifactId>nimbus-jose-jwt</artifactId> <version>9.13</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>${log4j2.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${log4j2.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>net.sf.jopt-simple</groupId> <artifactId>jopt-simple</artifactId> <version>5.0.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>net.minecrell</groupId> <artifactId>terminalconsoleappender</artifactId> <version>1.1.1</version> <scope>compile</scope> <exclusions> <exclusion> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </exclusion> <exclusion> <groupId>org.jline</groupId> <artifactId>jline-reader</artifactId> </exclusion> <exclusion> <groupId>org.jline</groupId> <artifactId>jline-terminal-jna</artifactId> </exclusion> <exclusion> <groupId>org.jline</groupId> <artifactId>jline-terminal</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jline</groupId> <artifactId>jline-terminal</artifactId> <version>${jline.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jline</groupId> <artifactId>jline-terminal-jna</artifactId> <version>${jline.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jline</groupId> <artifactId>jline-reader</artifactId> <version>${jline.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> </dependency> <dependency> <groupId>fr.inria.gforge.spoon</groupId> <artifactId>spoon-core</artifactId> <!-- See rendered release value at http://spoon.gforge.inria.fr/ --> <version>9.1.0</version> <scope>test</scope> <exclusions> <exclusion> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.11.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-annotations</artifactId> <version>4.5.2</version> <optional>true</optional> </dependency> </dependencies> <ciManagement> <url>https://builds.powernukkit.org/buildConfiguration/PowerNukkit_Snapshots</url> </ciManagement> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/VERSION.txt</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <excludes> <exclude>**/VERSION.txt</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.1.2</version> <configuration> <archive> <manifestEntries> <addClasspath>true</addClasspath> <classpathPrefix>lib/</classpathPrefix> <Main-Class>cn.nukkit.Nukkit</Main-Class> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <!-- The semantics of this option are reversed, see MCOMPILER-209. --> <useIncrementalCompilation>false</useIncrementalCompilation> <compilerArgs> <!-- Prevents recompilation due to missing package-info.class, see MCOMPILER-205 --> <arg>-Xpkginfo:always</arg> </compilerArgs> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <skipTests>${skipTests}</skipTests> <trimStackTrace>false</trimStackTrace> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.9.1</version> <dependencies> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-markdown</artifactId> <version>1.9.1</version> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-xhtml</artifactId> <version>1.9.1</version> </dependency> </dependencies> <configuration> <generateSitemap>true</generateSitemap> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.1.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M2</version> <executions> <execution> <id>enforce</id> <configuration> <rules> <DependencyConvergence /> <requireJavaVersion> <version>1.8</version> </requireJavaVersion> </rules> </configuration> <goals> <goal>enforce</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.projectlombok</groupId> <artifactId>lombok-maven-plugin</artifactId> <version>1.18.20.0</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>delombok</goal> </goals> </execution> </executions> <configuration> <addOutputDirectory>false</addOutputDirectory> <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory> <outputDirectory>${project.build.directory}/delombok</outputDirectory> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <!-- add this to disable checking --> <source>8</source> <doclint>none</doclint> <quiet>true</quiet> <sourcepath>${project.build.directory}/delombok</sourcepath> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0-M1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>3.0.0-M1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.4.1</version> <dependencies> <dependency> <groupId>com.github.edwgiz</groupId> <artifactId>maven-shade-plugin.log4j2-cachefile-transformer</artifactId> <version>2.8.1</version> </dependency> </dependencies> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/versions/9/module-info.class</exclude> </excludes> </filter> </filters> <transformers> <transformer implementation="com.github.edwgiz.mavenShadePlugin.log4j2CacheTransformer.PluginsCacheFileTransformer"> </transformer> </transformers> <shadedArtifactAttached>true</shadedArtifactAttached> <createSourcesJar>true</createSourcesJar> </configuration> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>get-the-git-infos</id> <goals> <goal>revision</goal> </goals> </execution> </executions> <configuration> <dotGitDirectory>${project.basedir}/.git</dotGitDirectory> <prefix>git</prefix> <dateFormat>dd.MM.yyyy '@' HH:mm:ss z</dateFormat> <dateFormatTimeZone>${user.timezone}</dateFormatTimeZone> <verbose>false</verbose> <generateGitPropertiesFile>true</generateGitPropertiesFile> <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties </generateGitPropertiesFilename> <format>properties</format> <skipPoms>true</skipPoms> <injectAllReactorProjects>false</injectAllReactorProjects> <failOnNoGitDirectory>false</failOnNoGitDirectory> <failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo> <skip>false</skip> <runOnlyOnce>true</runOnlyOnce> <excludeProperties> <excludeProperty>git.user.*</excludeProperty> </excludeProperties> <includeOnlyProperties> </includeOnlyProperties> <useNativeGit>false</useNativeGit> <abbrevLength>7</abbrevLength> <commitIdGenerationMode>flat</commitIdGenerationMode> <gitDescribe> <skip>false</skip> <always>false</always> <abbrev>7</abbrev> <dirty>-dirty</dirty> <match>*</match> <tags>false</tags> <forceLongFormat>false</forceLongFormat> </gitDescribe> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <skip>${skipGpg}</skip> </configuration> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>4.2.3</version> <executions> <execution> <id>spotbugs</id> <phase>prepare-package</phase> <goals> <goal>spotbugs</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.7</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> </configuration> <executions> <execution> <!-- Copy the readme file to the site source files so that a page is generated from it. --> <id>copy-readme</id> <phase>pre-site</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/generated-site/markdown</outputDirectory> <resources> <resource> <directory>${basedir}</directory> <includes> <include>README.md</include> <include>CHANGELOG.md</include> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <source>8</source> <doclint>none</doclint> <quiet>true</quiet> </configuration> <reportSets> <reportSet> <id>html</id> <reports> <report>javadoc</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>