gravitylow / Updater

Easy automatic updates for Bukkit
MIT License
35 stars 41 forks source link

Project is mavenized! #14

Closed SimSonic closed 10 years ago

SimSonic commented 10 years ago

Hello! This little change is making a lot of easier developers to keep Updater code in their plugins up-to-date!

I've setted up my own Jenkins to automatically build it from here (my from my fork but after you accept my Pull Request - yours code).

Any developer can add it into his project by adding this lines into pom.xml:

<repositories>
    ...
    <repository>
        <id>voxile.ru</id>
        <url>http://ci.voxile.ru/plugin/repository/everything/</url>
    </repository>
    ...
</repositories>
...
<dependencies>
    ...
    <dependency>
        <groupId>net.gravitydevelopment</groupId>
        <artifactId>Updater</artifactId>
        <version>2.0</version>
    </dependency>
    ...
</dependencies>

And setup shading it into .jar.

gravitylow commented 10 years ago

Pulled with some changes, thanks!