Bukkit Maven Repo Down?

Discussion in 'Plugin Development' started by RROD, Jan 30, 2012.

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

    RROD

    I've just ran Maven Clean, and then Maven Install to update my version of Bukkit.
    Only I get this when Installing.
    Show Spoiler

    Code:
    [INFO] ------------------------------------------------------------------------
    [INFO] Building MCStats 4.1.7-SNAPSHOT
    [INFO] ------------------------------------------------------------------------
    SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
    SLF4J: Defaulting to no-operation (NOP) logger implementation
    SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
    Downloading: http://repo.bukkit.org/artifactory/repo/org/bukkit/bukkit/0.0.1-SNAPSHOT/maven-metadata.xml
    [WARNING] Could not transfer metadata org.bukkit:bukkit:0.0.1-SNAPSHOT/maven-metadata.xml from/to bukkit-repo (http://repo.bukkit.org/artifactory/repo): Failed to transfer http://repo.bukkit.org/artifactory/repo/org/bukkit/bukkit/0.0.1-SNAPSHOT/maven-metadata.xml. Error code 500, Internal Server Error
    Downloading: http://repo.bukkit.org/artifactory/repo/org/bukkit/bukkit/0.0.1-SNAPSHOT/maven-metadata.xml
    [WARNING] Could not transfer metadata org.bukkit:bukkit:0.0.1-SNAPSHOT/maven-metadata.xml from/to bukkit-repo (http://repo.bukkit.org/artifactory/repo): Failed to transfer http://repo.bukkit.org/artifactory/repo/org/bukkit/bukkit/0.0.1-SNAPSHOT/maven-metadata.xml. Error code 500, Internal Server Error
    Downloading: http://repo.bukkit.org/artifactory/repo/org/bukkit/bukkit/0.0.1-SNAPSHOT/bukkit-0.0.1-SNAPSHOT.pom
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 1.837s
    [INFO] Finished at: Mon Jan 30 20:01:30 GMT 2012
    [INFO] Final Memory: 5M/92M
    [INFO] ------------------------------------------------------------------------
    [ERROR] Failed to execute goal on project MCStats: Could not resolve dependencies for project com.rrod.mcstats:MCStats:jar:4.1.7-SNAPSHOT: Failed to collect dependencies for [org.bukkit:bukkit:jar:0.0.1-SNAPSHOT (compile)]: Failed to read artifact descriptor for org.bukkit:bukkit:jar:0.0.1-SNAPSHOT: Could not transfer artifact org.bukkit:bukkit:pom:0.0.1-SNAPSHOT from/to bukkit-repo (http://repo.bukkit.org/artifactory/repo): Failed to transfer http://repo.bukkit.org/artifactory/repo/org/bukkit/bukkit/0.0.1-SNAPSHOT/bukkit-0.0.1-SNAPSHOT.pom. Error code 500, Internal Server Error -> [Help 1]
    [ERROR]
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    [ERROR]
    [ERROR] For more information about the errors and possible solutions, please read the following articles:
    [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException


    What on Earth is wrong?

    Also, here is my POM.xml:
    Show Spoiler

    Code:
    <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>
     
        <groupId>com.rrod.mcstats</groupId>
        <artifactId>MCStats</artifactId>
        <version>4.1.7-SNAPSHOT</version>
        <name>MCStats</name>
        <url>http://dev.bukkit.org/server-mods/mcstats4</url>
        <packaging>jar</packaging>
        <description>Online Player Statistics. </description>
     
        <scm>
            <!-- CHANGE ME -->
            <connection>scm:git:git://github.com/RROD/MCStats.git</connection>
            <url>https://github.com/RROD/MCStats</url>
            <developerConnection>scm:git:[email protected]:RROD/MCStats.git</developerConnection>
        </scm>
     
        <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        </properties>
     
        <repositories>
            <repository>
                <id>bukkit-repo</id>
                <url>http://repo.bukkit.org/artifactory/repo</url>
            </repository>
        </repositories>
     
        <dependencies>
            <dependency>
                <groupId>org.bukkit</groupId>
                <artifactId>bukkit</artifactId>
                <version>0.0.1-SNAPSHOT</version>
            </dependency>
        </dependencies>
     
        <build>
            <resources>
                <resource>
                    <targetPath>.</targetPath>
                    <directory>${basedir}/src/main/resources/</directory>
                    <filtering>true</filtering>
                    <includes>
                        <include>config.yml</include>
                        <include>plugin.yml</include>
                    </includes>
                </resource>
                <resource>
                    <targetPath>.</targetPath>
                    <directory>${basedir}/</directory>
                    <filtering>false</filtering>
                    <includes>
                        <include>README.md</include>
                    </includes>
                </resource>
            </resources>
           
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>2.3.2</version>
                    <configuration>
                        <showDeprecation>true</showDeprecation>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </project>
    
     
  2. I'm pretty sure its just 'repo.bukkit.org' now, they changed it. Check lukes post
     
  3. Offline

    KingHarper

Thread Status:
Not open for further replies.

Share This Page