Solved Craftbukkit modding, bukkit.jar is missing

Discussion in 'Bukkit Help' started by Ewearys, May 10, 2015.

Thread Status:
Not open for further replies.
  1. Offline

    Ewearys

    Hello, I have a problem.
    More than 1 year ago, I was modding my CraftBukkit 1.7.2. It was fine, no problems spotted...
    I started back 1 week ago, and I have an error on the POM.xml
    Here's the problem :
    Code:
    Missing artifact org.bukkit:bukkit:jar:1.7.2-R0.4-SNAPSHOT
    On this dependency :
    Code:
        <dependency>
          <groupId>org.bukkit</groupId>
          <artifactId>bukkit</artifactId>
          <version>${project.version}</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
    I think that's because Bukkit has been removed on Github

    Could someone help me to fixe this please ?
    Thanks, good day !
     
  2. Offline

    JWhy

    Add this entry to your pom.xml's <repositories> tag:
    Code:
        <repository>
          <id>sk89q-repo</id>
          <url>http://maven.sk89q.com/repo/</url>
        </repository>
    It will add sk89q's maven repository, which includes Bukkit artifacts.
     
    Ewearys likes this.
  3. Offline

    Ewearys

    Thanks, working fine ! :D
     
Thread Status:
Not open for further replies.

Share This Page