RhysB / Project-Poseidon

A CraftBukkit CB1060 fork for Beta 1.7.3 fixing bugs and adding basic features
https://discord.gg/FwKg676
GNU General Public License v3.0
92 stars 34 forks source link

Unsure how to create plugins #97

Closed Lncvrt closed 4 months ago

Lncvrt commented 4 months ago

I don't really create plugins for under versions 1.8 in spigot api, and I would like to do some custom ones for my server. What API stuff should I do for my project?

Lncvrt commented 4 months ago

Solved by doing this

  <repositories>
    <repository>
      <id>johnymuffin-nexus-releases</id>
      <url>https://repository.johnymuffin.com/repository/maven-public/</url>
      <releases>
        <enabled>true</enabled>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>
  </repositories>

  <dependencies>
      <dependency>
        <groupId>org.bukkit</groupId>
        <artifactId>bukkit</artifactId>
        <version>0.0.1-POSEIDON</version>
        <type>jar</type>
        <scope>provided</scope>
      </dependency>
  </dependencies>