MVN

us.irdev.bedrock : bag

Maven & Gradle

Jul 27, 2023

Bag · Bag provides two container classes for text-based storage of constrained types in an array (BagArray) or as a map (BagObject), with a means of serializing objects to and from these container types.

<dependency>
    <groupId>us.irdev.bedrock</groupId>
    <artifactId>bag</artifactId>
    <version>2.2.7</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of us.irdev.bedrock : bag to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.2.7

All Versions

Choose a version of us.irdev.bedrock : bag to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.2.x
bag-2.2.7
bag-2.2.6
bag-2.2.5
bag-2.2.4
bag-2.2.3
bag-2.2.1

How to add a dependency to Maven

Add the following us.irdev.bedrock : bag maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>us.irdev.bedrock</groupId>
    <artifactId>bag</artifactId>
    <version>2.2.7</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following us.irdev.bedrock : bag gradle dependency to your build.gradle file:

implementation 'us.irdev.bedrock:bag:2.2.7'

Gradle Kotlin DSL: Add the following us.irdev.bedrock : bag gradle kotlin dependency to your build.gradle.kts file:

implementation("us.irdev.bedrock:bag:2.2.7")

How to add a dependency to SBT Scala

SBT Scala: Add the following us.irdev.bedrock : bag sbt scala dependency to your build.sbt file:

libraryDependencies += "us.irdev.bedrock" % "bag" % "2.2.7"