A source code formatter/beautifier/pretty printer for the Java programming language.
This is a fork of the late/great jalopy source formatter at http://sourceforge.net/projects/jalopy/, later forked by @lukespragg, and later forked again by me. The swing application and log4j appenders were removed. What remains is just the library part.
Or download the latest zip archive.
Send me pull requests OR create issues!
<dependency>
<groupId>com.github.rotty3000</groupId>
<artifactId>jalopy</artifactId>
<version>3000.0.0</version>
</dependency>
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile 'com.github.rotty3000:jalopy:3000.0.0'
}
To generate the the Javadocs with Maven, use the mvn javadoc:javadoc
command. To view the javadocs simply go to target/site/apidocs/
and open index.html
in a web browser.
Jalopy is licensed under the BSD 3-Clause License. Basically, you can do whatever you want as long as you include the original copyright. Please see the LICENSE.txt
file for details.