MVN

com.github.power-libraries : iopower

Maven & Gradle

Sep 15, 2016
1 stars

Power Libraries is a small project to collect some repeatedly needed or otherwise useful Java 8 classes in a collection of tiny libraries. IO Power is the first and really tiny library of the Power Libraries. It contains some simple helper method for opening Input- and Outputstreams. The main purpose of IO Power is to make opening streams, readers and writers less cluttered and simple to understand.

<dependency>
    <groupId>com.github.power-libraries</groupId>
    <artifactId>iopower</artifactId>
    <version>1.1.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.power-libraries : iopower to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.1.3

All Versions

Choose a version of com.github.power-libraries : iopower to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.1.x
iopower-1.1.3
iopower-1.1.2
iopower-1.1.1
iopower-1.1.0
1.0.x
iopower-1.0.0

How to add a dependency to Maven

Add the following com.github.power-libraries : iopower maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.power-libraries</groupId>
    <artifactId>iopower</artifactId>
    <version>1.1.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.power-libraries : iopower gradle dependency to your build.gradle file:

implementation 'com.github.power-libraries:iopower:1.1.3'

Gradle Kotlin DSL: Add the following com.github.power-libraries : iopower gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.power-libraries:iopower:1.1.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.power-libraries : iopower sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.power-libraries" % "iopower" % "1.1.3"

Advertisement