MVN

com.powerupsoftwareengineering.java-immutable-model : java-immutable-model

Maven & Gradle

Apr 24, 2024
0 stars

Java Immutabble Model · Provides a set of classes that allow for the creation of immutable model definitions. It uses the builder pattern to create the immutable objects. It also includes a set of common validators. These are used to ensure that the content of the immutable object builders are valid before constructing the model object. This will ensure that only valid immutable objects are generated reducing the amount of content checking required for the object.

<dependency>
    <groupId>com.powerupsoftwareengineering.java-immutable-model</groupId>
    <artifactId>java-immutable-model</artifactId>
    <version>1.5.12</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.powerupsoftwareengineering.java-immutable-model : java-immutable-model to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.5.12

All Versions

Choose a version of com.powerupsoftwareengineering.java-immutable-model : java-immutable-model to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.5.x
java-immutable-model-1.5.12

How to add a dependency to Maven

Add the following com.powerupsoftwareengineering.java-immutable-model : java-immutable-model maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.powerupsoftwareengineering.java-immutable-model</groupId>
    <artifactId>java-immutable-model</artifactId>
    <version>1.5.12</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.powerupsoftwareengineering.java-immutable-model : java-immutable-model gradle dependency to your build.gradle file:

implementation 'com.powerupsoftwareengineering.java-immutable-model:java-immutable-model:1.5.12'

Gradle Kotlin DSL: Add the following com.powerupsoftwareengineering.java-immutable-model : java-immutable-model gradle kotlin dependency to your build.gradle.kts file:

implementation("com.powerupsoftwareengineering.java-immutable-model:java-immutable-model:1.5.12")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.powerupsoftwareengineering.java-immutable-model : java-immutable-model sbt scala dependency to your build.sbt file:

libraryDependencies += "com.powerupsoftwareengineering.java-immutable-model" % "java-immutable-model" % "1.5.12"