Skip to content

dags-/orepack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

orepack

Depend on Sponge Plugins hosted on https://ore.spongepowered.org

Gradle

repositories {
    maven { url 'https://orepack.com' }
}

dependencies {
    compile 'com.orepack.$PLUGIN_AUTHOR:$PLUGIN_ID:$PLUGIN_VERSION'
}

Maven

<repositories>
  <repository>
    <id>orepack</id>
    <url>https://orepack.com</url>
  </repository>
</repositories>

<dependencies>
  <dependency>
    <groupId>com.orepack.$PLUGIN_AUTHOR</groupId>
    <artifactId>$PLUGIN_ID</artifactId>
    <version>$PLUGIN_VERSION</version>
  </dependency>
</dependencies>