MVN

com.madzera.happytree : happytree

Maven & Gradle

Dec 27, 2020
7 stars

happytree · Java Object Model API to handle Java Objects in a tree structure. Be able to transform a linear structure of objects with a tree behavior into a real tree structure and handle them as if it were nodes in a tree.

<dependency>
    <groupId>com.madzera.happytree</groupId>
    <artifactId>happytree</artifactId>
    <version>1.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.madzera.happytree : happytree to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.0

All Versions

Choose a version of com.madzera.happytree : happytree to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
happytree-1.0.0

How to add a dependency to Maven

Add the following com.madzera.happytree : happytree maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.madzera.happytree</groupId>
    <artifactId>happytree</artifactId>
    <version>1.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.madzera.happytree : happytree gradle dependency to your build.gradle file:

implementation 'com.madzera.happytree:happytree:1.0.0'

Gradle Kotlin DSL: Add the following com.madzera.happytree : happytree gradle kotlin dependency to your build.gradle.kts file:

implementation("com.madzera.happytree:happytree:1.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.madzera.happytree : happytree sbt scala dependency to your build.sbt file:

libraryDependencies += "com.madzera.happytree" % "happytree" % "1.0.0"

Advertisement