MVN

com.tobedevoured.modelcitizen : core

Maven & Gradle

Feb 12, 2020
1 usages
94 stars

core · 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.modelcitizen</groupId>
    <artifactId>core</artifactId>
    <version>0.8.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

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

  • Latest Stable: 0.8.3

All Versions

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

Version Vulnerabilities Updated
0.8.x
core-0.8.3
core-0.8.2
core-0.8.1
core-0.8.0
0.7.x
core-0.7.0

How to add a dependency to Maven

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

<dependency>
    <groupId>com.tobedevoured.modelcitizen</groupId>
    <artifactId>core</artifactId>
    <version>0.8.3</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'com.tobedevoured.modelcitizen:core:0.8.3'

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

implementation("com.tobedevoured.modelcitizen:core:0.8.3")

How to add a dependency to SBT Scala

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

libraryDependencies += "com.tobedevoured.modelcitizen" % "core" % "0.8.3"

Advertisement