Geen omschrijving

Gary Paduana b1fff6c9cf add readme 9 jaren geleden
.idea b1fff6c9cf add readme 9 jaren geleden
src f6bf7afc0a add hashing service for files and directories 9 jaren geleden
.gitignore c1e3f7b6c1 add new classes and test cases 9 jaren geleden
README.md b1fff6c9cf add readme 9 jaren geleden
build.gradle c1e3f7b6c1 add new classes and test cases 9 jaren geleden

README.md

Installation

gradle

Step 1. Add the JitPack repository to your build file

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

Step 2. Add the dependency

dependencies {
    compile 'com.github.garypaduana:groovy-tools:-SNAPSHOT'
}

maven

Step 1. Add the JitPack repository to your build file

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

Step 2. Add the dependency

<dependency>
    <groupId>com.github.garypaduana</groupId>
    <artifactId>groovy-tools</artifactId>
    <version>-SNAPSHOT</version>
</dependency>