MVN

com.github.richardroda.util : closeit

Maven & Gradle

Mar 27, 2022
3 stars

Functional interfaces that facilitate using try-with-resources with lambdas to easily clean up resources that do not extend AutoCloseable, or to replace the finally clause.

<dependency>
    <groupId>com.github.richardroda.util</groupId>
    <artifactId>closeit</artifactId>
    <version>1.7</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.richardroda.util : closeit to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.7

All Versions

Choose a version of com.github.richardroda.util : closeit to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.7
closeit-1.7
1.6
closeit-1.6
1.5
closeit-1.5
1.4
closeit-1.4
1.3
closeit-1.3
1.2
closeit-1.2
1.1
closeit-1.1

How to add a dependency to Maven

Add the following com.github.richardroda.util : closeit maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.richardroda.util</groupId>
    <artifactId>closeit</artifactId>
    <version>1.7</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.richardroda.util : closeit gradle dependency to your build.gradle file:

implementation 'com.github.richardroda.util:closeit:1.7'

Gradle Kotlin DSL: Add the following com.github.richardroda.util : closeit gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.richardroda.util:closeit:1.7")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.richardroda.util : closeit sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.richardroda.util" % "closeit" % "1.7"