MVN

de.incentergy.test : java-bean-to-code-serializer

Maven & Gradle

Feb 02, 2023
9 stars

Java Bean to Code Serializer · This code takes a java bean and tries to serialize it as java code that sets recursively all the fields. This is useful if you want to mock an object and already get the object somewhere but you want to put it in the code.

<dependency>
    <groupId>de.incentergy.test</groupId>
    <artifactId>java-bean-to-code-serializer</artifactId>
    <version>0.10</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of de.incentergy.test : java-bean-to-code-serializer to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.10

All Versions

Choose a version of de.incentergy.test : java-bean-to-code-serializer to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.10
java-bean-to-code-serializer-0.10
0.9
java-bean-to-code-serializer-0.9
0.8
java-bean-to-code-serializer-0.8

How to add a dependency to Maven

Add the following de.incentergy.test : java-bean-to-code-serializer maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>de.incentergy.test</groupId>
    <artifactId>java-bean-to-code-serializer</artifactId>
    <version>0.10</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following de.incentergy.test : java-bean-to-code-serializer gradle dependency to your build.gradle file:

implementation 'de.incentergy.test:java-bean-to-code-serializer:0.10'

Gradle Kotlin DSL: Add the following de.incentergy.test : java-bean-to-code-serializer gradle kotlin dependency to your build.gradle.kts file:

implementation("de.incentergy.test:java-bean-to-code-serializer:0.10")

How to add a dependency to SBT Scala

SBT Scala: Add the following de.incentergy.test : java-bean-to-code-serializer sbt scala dependency to your build.sbt file:

libraryDependencies += "de.incentergy.test" % "java-bean-to-code-serializer" % "0.10"

Advertisement