MVN

org.kohsuke.codemodel : codemodel-annotation-compiler

Maven & Gradle

Apr 10, 2016

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

<dependency>
    <groupId>org.kohsuke.codemodel</groupId>
    <artifactId>codemodel-annotation-compiler</artifactId>
    <version>2.7</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

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

  • Latest Stable: 2.7

All Versions

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

Version Vulnerabilities Updated
2.7
codemodel-annotation-compiler-2.7

How to add a dependency to Maven

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

<dependency>
    <groupId>org.kohsuke.codemodel</groupId>
    <artifactId>codemodel-annotation-compiler</artifactId>
    <version>2.7</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'org.kohsuke.codemodel:codemodel-annotation-compiler:2.7'

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

implementation("org.kohsuke.codemodel:codemodel-annotation-compiler:2.7")

How to add a dependency to SBT Scala

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

libraryDependencies += "org.kohsuke.codemodel" % "codemodel-annotation-compiler" % "2.7"