Skip to content

SupaHam's Commons library contains a bunch of utilities for the Java language.

License

Notifications You must be signed in to change notification settings

SupaHam/SupaCommons

Repository files navigation

Supa Commons Build Status

SupaHam's Commons contains a bunch of utilities. This software is always being added to.

Maven

<repositories>
    <repository>
        <id>enderzone-repo</id>
        <url>http://ci.ender.zone/plugin/repository/everything</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>com.supaham.commons</groupId>
        <artifactId>commons-core</artifactId>
        <version>0.1-SNAPSHOT</version> <!-- Change this value to whichever version you wish to depend on. -->
    </dependency>
</dependencies>
<!-- If you want to shade this dependency into your project, use the next piece of code -->
<plugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-shade-plugin</artifactId>
        <version>2.1</version>
        <configuration>
            <artifactSet>
                <includes>
                    <include>com.supaham.commons:commons-core</include>
                </includes>
            </artifactSet>
        </configuration>
    </plugin>
</plugins>

Gradle

dependencies {
    compile group: 'com.supaham.commons:commons-core:0.1-SNAPSHOT' // Change the last section to whichever version you wish to depend on.
}
// If you want to shade this dependency into your project, Utilize the ShadowJar plugin like so:
shadowJar {
    dependencies {
        include(dependency('com.supaham.commons:commons-core'))
    }
}

Disclaimer

This project gives you no guarantee that it will not break in the future. Any APIs provided can very much change in a blink of an eye!


I wrote a post about this which you can find here.

About

SupaHam's Commons library contains a bunch of utilities for the Java language.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages