MVN

com.googlecode.entreri : entreri

Maven & Gradle

Mar 03, 2012

Entreri Entity-Component Framework · Entreri is an entity-component framework for Java that helps manage or remove complex OO hierarchies that often form when developing games. For a useful description of an entity-component framework, see http://t-machine.org/index.php/2007/09/03/entity-systems-are-the-future-of-mmog-development-part-1/

<dependency>
    <groupId>com.googlecode.entreri</groupId>
    <artifactId>entreri</artifactId>
    <version>1.4.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.googlecode.entreri : entreri to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.4.1

All Versions

Choose a version of com.googlecode.entreri : entreri to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.4.x
entreri-1.4.1
1.3.x
entreri-1.3.0
1.2.x
entreri-1.2.1
entreri-1.2.0
1.1.x
entreri-1.1.0
1.0.x
entreri-1.0.1
entreri-1.0.0

How to add a dependency to Maven

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

<dependency>
    <groupId>com.googlecode.entreri</groupId>
    <artifactId>entreri</artifactId>
    <version>1.4.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.googlecode.entreri : entreri gradle dependency to your build.gradle file:

implementation 'com.googlecode.entreri:entreri:1.4.1'

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

implementation("com.googlecode.entreri:entreri:1.4.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.googlecode.entreri : entreri sbt scala dependency to your build.sbt file:

libraryDependencies += "com.googlecode.entreri" % "entreri" % "1.4.1"