بدون توضیح

Gary Paduana e084350d36 clean up gitignore and refactor static constants 9 سال پیش
.idea e084350d36 clean up gitignore and refactor static constants 9 سال پیش
src e084350d36 clean up gitignore and refactor static constants 9 سال پیش
.gitignore e084350d36 clean up gitignore and refactor static constants 9 سال پیش
README.md b1fff6c9cf add readme 9 سال پیش
build.gradle c1e3f7b6c1 add new classes and test cases 9 سال پیش

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>