Skip to content

Latest commit

 

History

History
70 lines (51 loc) · 2.19 KB

README.md

File metadata and controls

70 lines (51 loc) · 2.19 KB

common-utils

Java convenience classes and methods that reduce boilerplate in a variety of non-specific contexts, with optimal dependencies for modularised packages.

Installation

Snapshots are distributed on Sonatype's Snapshot Repository:

<dependency>
  <groupId>com.github.fommil</groupId>
  <artifactId>common-utils</artifactId>
  <version>1.0-SNAPSHOT</version>
</dependency>

If the above fails, ensure you have the following in your pom.xml:

    <repositories>
        <repository>
            <id>sonatype-snapshots</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>

Donations

Please consider supporting the maintenance of this open source project with a donation:

Donate via Paypal

Licence

Copyright (C) 2012 Samuel Halliday

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with this library; if not, see http://www.gnu.org/licenses/

Contributing

Contributors are encouraged to fork this repository and issue pull requests. Contributors implicitly agree to assign an unrestricted licence to Sam Halliday, but retain the copyright of their code (this means we both have the freedom to update the licence for those contributions).