Skip to content

berry64/Libs64

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Libs64 Project page

A lightweight Minecraft Bukkit/Spigot plugins library

this project is almost 100% under development.

Features:

  • Easy-to-use SQL features
    • MYSQL
    • SQLITE
  • File Management
    • Saving resources to specific locations
    • one-function-call configuration load/reload
  • Translator/I18N (under development)

How to use

For maven: simply include this in your pom.xml

<repositories>
     <repository>
         <id>berry64-repo</id>
         <url>https://raw.github.com/berry64/mvn-repo/master/</url>
     </repository>
</repositories>

<dependencies>
        <dependency>
            <groupId>net.berry64.net.berry64.libs64</groupId>
            <artifactId>Libs64</artifactId>
            <version>2.0-INTERNAL</version>
        </dependency>
</dependencies>

Don't forget to add to plugin.yml dependency as well

depends: Libs64

if you want to bundle Libs64 inside your jar so other people won't have to download a separate jar, you can use maven shade plugin:

<build>
    <plugins>
    <plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-shade-plugin</artifactId>
       <version>3.2.1</version>
       <configuration>
           <minimizeJar>true</minimizeJar>
       </configuration>
       <executions>
           <execution>
               <phase>package</phase>
               <goals>
                   <goal>shade</goal>
               </goals>
           </execution>
       </executions>
       </plugin>
    </plugins>
</build>

##Libraries Used/Special Thanks to:

About

Lightweight and (hopefully?) powerful minecraft plugin library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages