Home

Awesome

#JCodeModel (v1.0.3)

JCodeModel is a fork of the existing Sun codemodel, part of the GlassFish project. With java.net in ruins, it seemed liked a good time to fork this project and clean it up as well as add some new features (for example, Java 7 syntax).

The current release is 1.0.3, and contains several fixes, cosmetic improvements to the output, and some improved functionality for inner classes to support the development of Flapi.

Many thanks to the original contributors, namely @Kohsuke.

Usage

The dependencies are deployed to Maven Central. To use, add the following to your build script:

Maven

<dependency>
  <groupId>com.unquietcode.tools.jcodemodel</groupId>
  <artifactId>codemodel</artifactId>
  <version>1.0.3</version>
</dependency>

Gradle

dependencies {
  compile 'com.unquietcode.tools.jcodemodel:codemodel:1.0.3'
}