MVN

com.tobedevoured : modelcitizen

Maven & Gradle

Feb 11, 2020
1 usages
85 stars

model-citizen · Model Citizen is an annotation based model factory for Java. A Model is mapped by a Blueprint using annotated fields. Blueprints contain default values and references to other blueprinted models. The ModelFactory can create Models based on registered Blueprints. A Model already created can be passed into the ModelFactory as a Reference Model, which will be used as the basis for the new Model.

<dependency>
    <groupId>com.tobedevoured</groupId>
    <artifactId>modelcitizen</artifactId>
    <version>parent</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.tobedevoured : modelcitizen to add to Maven or Gradle - Latest Versions:

  • Latest Stable: parent

All Versions

Choose a version of com.tobedevoured : modelcitizen to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.6.x
modelcitizen-0.6.0
0.5.x
modelcitizen-0.5.2
modelcitizen-0.5.1
modelcitizen-0.5.0
0.4.x
modelcitizen-0.4.0
0.3.x
modelcitizen-0.3.2
modelcitizen-0.3.1
modelcitizen-0.3.0
0.2.x
modelcitizen-0.2.4
spring
modelcitizen-spring
parent
modelcitizen-parent
core
modelcitizen-core

How to add a dependency to Maven

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

<dependency>
    <groupId>com.tobedevoured</groupId>
    <artifactId>modelcitizen</artifactId>
    <version>parent</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.tobedevoured : modelcitizen gradle dependency to your build.gradle file:

implementation 'com.tobedevoured:modelcitizen:parent'

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

implementation("com.tobedevoured:modelcitizen:parent")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.tobedevoured : modelcitizen sbt scala dependency to your build.sbt file:

libraryDependencies += "com.tobedevoured" % "modelcitizen" % "parent"

Advertisement