cannot load nukkit repository from remote

ajaekel

New Member
Hi all,
sorry - this maybe a complete dumb question - I am new to this whole topic. I would try to develop a simple plugin for my nukkit-server. I am using intellij and started a new project. In my pom.xml I try to load the nukkit-repositories via remote from this location:

Code:
<repositories>
        <repository>
            <id>nukkit-repo</id>
            <url>https://repo.nukkitx.com/maven-snapshots/</url>
        </repository>
    </repositories>
Unfortunately, in the dependencies, the nukkit groupId and artifactId appear red underlined.

Does someone know the correct url for the repositories?

Kind regards,
Achim
 

Redned

Member
Hi all,
sorry - this maybe a complete dumb question - I am new to this whole topic. I would try to develop a simple plugin for my nukkit-server. I am using intellij and started a new project. In my pom.xml I try to load the nukkit-repositories via remote from this location:

Code:
<repositories>
        <repository>
            <id>nukkit-repo</id>
            <url>https://repo.nukkitx.com/maven-snapshots/</url>
        </repository>
    </repositories>
Unfortunately, in the dependencies, the nukkit groupId and artifactId appear red underlined.

Does someone know the correct url for the repositories?

Kind regards,
Achim
You have the repository right. However, it’s had some downtimes here and there over these past days. For now, just download the Nukkit jar off this website and manually add it to your local maven repository.

Take a look at this page for more information on how to do that: https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html
 

ajaekel

New Member
You have the repository right. However, it’s had some downtimes here and there over these past days. For now, just download the Nukkit jar off this website and manually add it to your local maven repository.

Take a look at this page for more information on how to do that: https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html
Many Thanks - I was able to successfully get a build - in the meantime remote repos are also back again.

Just one more question: Is it also possible to upload Maps (e.g. from https://mcpedl.com) to a nukkit Server? And if - is it just to copy the jar or .mcworld into the worlds-folder on the server?

Kind regards,
Achim
 
Top