diff --git a/README.md b/README.md index bbd9d25..24142b9 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,23 @@ instance of the `Either` type, while in any other case, we return a new `R `Either` type. In the caller method(i.e., the `main`) we can then execute a custom statement using Java's builtin pattern matching. + +## Installation +**λTonic** is available on [Maven Central](https://central.sonatype.com/artifact/io.github.ceticamarco/LambdaTonic), +you can install it either by using Maven: +```xml + + io.github.ceticamarco + LambdaTonic + 0.0.1 + +``` + +or by using Gradle: +```kotlin +implementation 'io.github.ceticamarco:LambdaTonic:0.0.1' +``` + ## API Usage The `Either` data type supports a broad spectrum of features, below there is a list of all supported functionalities. diff --git a/pom.xml b/pom.xml index 7db94b6..77d1727 100644 --- a/pom.xml +++ b/pom.xml @@ -4,9 +4,34 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 - com.ceticamarco + io.github.ceticamarco LambdaTonic - 1.0-SNAPSHOT + pom + 0.0.1 + + + + ceticamarco + Marco Cetica + email@marcocetica.com + + + + + + MIT License + https://opensource.org/licenses/MIT + + + + https://github.com/ceticamarco/LambdaTonic + λTonic is functional library designed for modern Java + + + scm:git:https://github.com/ceticamarco/LambdaTonic.git + scm:git:https://github.com/ceticamarco/LambdaTonic.git + https://github.com/ceticamarco/LambdaTonic + 22 @@ -21,5 +46,29 @@ test - + + + + org.sonatype.central + central-publishing-maven-plugin + 0.5.0 + true + + central + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + + sign + + + + + + \ No newline at end of file