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
aliasesfor your commands. - This folder has a configuration file that checks for
plugin updatesthat usesColdDevlibrary.
ColdDev is a standalone plugin library, so you will need to install it on any plugins that you build with this internal library.
- 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; example1.0.
- Replace
<dependency>
<groupId>dev.padrewin</groupId>
<artifactId>colddev</artifactId>
<version>${version}</version>
<scope>compile</scope> <!-- Make sure the scope is COMPILE. -->
</dependency>