Update changelog

This commit is contained in:
Andreas Dangel
2014-10-11 11:01:53 +02:00
parent 7deb1ac596
commit 2e13d1dd5e

View File

@@ -1,6 +1,28 @@
# Changelog
## ???? - 5.1.4:
## ???? - 5.2.0:
**Modularization of the source code:**
The source code of pmd was undergoing a major restructuring. Each language is separated
out into its own module. This reduces the size of the artifacts significantly, if only
one language is needed.
Therefore, the maven coordinates needed to change. In order to just use pmd with java support, you'll need
the following two dependencies:
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>5.2.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>5.2.0</version>
</dependency>
The binary package still contains all languages and can be used as usual.
**Bugfixes:**