MVN

org.mmbase : mmbase-utils

Maven & Gradle

Aug 09, 2019
0 stars

MMBase2 Utils · <p> MMBase Utils is a part of MMBase, but can also be used in other projects. It contains several kind of utility classes.</p> <p>Highlights:</p> <ul> <li>An implementation of 'events'. Threads can use this to communicate certain things. Using mmbase-clustering, these events can also be sent to other servers.</li> <li>A logging framework</li> <li>A framework for string and byte array transformeration, plus a whole lot of implemetentations for that.</li> <li>Several java.util like classes (collections, dateparsing)</li> <li>File type recognition ('magicfile')</li> <li>The MMBase resourceloader, a generic fall-back mechanism for configuration files and similar resources.</li> <li>...</li> </ul>

<dependency>
    <groupId>org.mmbase</groupId>
    <artifactId>mmbase-utils</artifactId>
    <version>2.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.mmbase : mmbase-utils to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.0.0

All Versions

Choose a version of org.mmbase : mmbase-utils to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.0.x
mmbase-utils-2.0.0

How to add a dependency to Maven

Add the following org.mmbase : mmbase-utils maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.mmbase</groupId>
    <artifactId>mmbase-utils</artifactId>
    <version>2.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.mmbase : mmbase-utils gradle dependency to your build.gradle file:

implementation 'org.mmbase:mmbase-utils:2.0.0'

Gradle Kotlin DSL: Add the following org.mmbase : mmbase-utils gradle kotlin dependency to your build.gradle.kts file:

implementation("org.mmbase:mmbase-utils:2.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.mmbase : mmbase-utils sbt scala dependency to your build.sbt file:

libraryDependencies += "org.mmbase" % "mmbase-utils" % "2.0.0"

Advertisement