MVN

org.klojang : klojang-invoke

Maven & Gradle

Aug 16, 2023
0 stars

Klojang Invoke · Klojang Invoke is a Java module focused on path-based object access and dynamic invocation. Its central classes are the Path class and the PathWalker class. The Path class captures a path through an object graph. For example "employee.address.city". The PathWalker class lets you read from and write to a wide variety of types using Path objects.

<dependency>
    <groupId>org.klojang</groupId>
    <artifactId>klojang-invoke</artifactId>
    <version>1.0.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.klojang : klojang-invoke to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.4

All Versions

Choose a version of org.klojang : klojang-invoke to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
klojang-invoke-1.0.4
klojang-invoke-1.0.2
klojang-invoke-1.0.1

How to add a dependency to Maven

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

<dependency>
    <groupId>org.klojang</groupId>
    <artifactId>klojang-invoke</artifactId>
    <version>1.0.4</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'org.klojang:klojang-invoke:1.0.4'

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

implementation("org.klojang:klojang-invoke:1.0.4")

How to add a dependency to SBT Scala

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

libraryDependencies += "org.klojang" % "klojang-invoke" % "1.0.4"

Advertisement