Skip to content

Latest commit

 

History

History
52 lines (43 loc) · 1.94 KB

File metadata and controls

52 lines (43 loc) · 1.94 KB

ColdDev

ColdDev

Internal library used for Cold Development plugins.

Warning

If you ever find a .jar file of this lib colddev.jar, don't load it into your ~/plugins folder because won't work.
Is just a library used for plugins.


Caution

If you find a ColdDev folder into your ~/plugins, do not delete it.

  • (if you delete this folder that contains SQLite databases, your data goes bye bye, so be careful)

Note

  • This folder is present to store SQLite databases that are used by default instead of MySQL.
  • This folder has a configuration file where you can create aliases for your commands.
  • This folder has a configuration file that checks for plugin updates that uses ColdDev library.

</> For developers

spigot

ColdDev is a standalone plugin library, so you will need to install it on any plugins that you build with this internal library.

Maven:

  • Repository
        <repository>
            <id>colddev-repo</id>
            <url>https://repo.colddev.dev/</url>
<!-- Or use <url>https://hub.colddev.dev/repository/public-releases/</url> -->
        </repository>
  • Dependency
    • Replace ${version} with the latest version available; example 1.0.
        <dependency>
            <groupId>dev.padrewin</groupId>
            <artifactId>colddev</artifactId>
            <version>${version}</version>
            <scope>compile</scope> <!-- Make sure the scope is COMPILE. -->
        </dependency>