MVN

com.sun.codemodel : codemodel-annotation-compiler

Maven & Gradle

Dec 02, 2011

Codemodel Annotation Compiler · The annotation compiler ant task for the CodeModel java source code generation library

<dependency>
    <groupId>com.sun.codemodel</groupId>
    <artifactId>codemodel-annotation-compiler</artifactId>
    <version>2.6</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.sun.codemodel : codemodel-annotation-compiler to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.6

All Versions

Choose a version of com.sun.codemodel : codemodel-annotation-compiler to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.6
codemodel-annotation-compiler-2.6
2.5
codemodel-annotation-compiler-2.5
2.4.x
codemodel-annotation-compiler-2.4.1
2.4
codemodel-annotation-compiler-2.4
2.3
codemodel-annotation-compiler-2.3
2.2
codemodel-annotation-compiler-2.2
2.1
codemodel-annotation-compiler-2.1
2.0
codemodel-annotation-compiler-2.0

How to add a dependency to Maven

Add the following com.sun.codemodel : codemodel-annotation-compiler maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.sun.codemodel</groupId>
    <artifactId>codemodel-annotation-compiler</artifactId>
    <version>2.6</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.sun.codemodel : codemodel-annotation-compiler gradle dependency to your build.gradle file:

implementation 'com.sun.codemodel:codemodel-annotation-compiler:2.6'

Gradle Kotlin DSL: Add the following com.sun.codemodel : codemodel-annotation-compiler gradle kotlin dependency to your build.gradle.kts file:

implementation("com.sun.codemodel:codemodel-annotation-compiler:2.6")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.sun.codemodel : codemodel-annotation-compiler sbt scala dependency to your build.sbt file:

libraryDependencies += "com.sun.codemodel" % "codemodel-annotation-compiler" % "2.6"