Index: /FCKeditor.Java/trunk/java-core/pom.xml
===================================================================
--- /FCKeditor.Java/trunk/java-core/pom.xml	(revision 5498)
+++ /FCKeditor.Java/trunk/java-core/pom.xml	(revision 5499)
@@ -3,222 +3,222 @@
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  * Copyright (C) 2004-2010 Frederico Caldeira Knabben
- * 
+ *
  * == BEGIN LICENSE ==
- * 
+ *
  * Licensed under the terms of any of the following licenses at your
  * choice:
- * 
+ *
  *  - GNU General Public License Version 2 or later (the "GPL")
  *    http://www.gnu.org/licenses/gpl.html
- * 
+ *
  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  *    http://www.gnu.org/licenses/lgpl.html
- * 
+ *
  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  *    http://www.mozilla.org/MPL/MPL-1.1.html
- * 
+ *
  * == END LICENSE ==
  * @version: $Id$
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-	<modelVersion>4.0.0</modelVersion>
-	
-	<parent>
-		<groupId>net.fckeditor</groupId>
-		<artifactId>fckeditor-java</artifactId>
-		<version>2.7-SNAPSHOT</version>
-	</parent>
-	
-	<artifactId>java-core</artifactId>
-	<packaging>jar</packaging>
-	
-	<name>FCKeditor.Java Integration Core</name>
-	<description>
-		This Java library enables the FCKeditor to be used in a
-		Servlet/J2EE environment. It provides JSP tags for creating a
-		FCKeditor instance and a Servlet handling server-side user files
-		and folders.
-	</description>
-	<url>http://java.fckeditor.net</url>
-	
-	<dependencies>
-		<dependency>
-			<groupId>commons-fileupload</groupId>
-			<artifactId>commons-fileupload</artifactId>
-			<version>1.2.1</version>
-		</dependency>
-		<dependency>
-			<groupId>commons-io</groupId>
-			<artifactId>commons-io</artifactId>
-			<version>1.3.2</version>
-		</dependency>
-		<dependency>
-			<groupId>org.devlib.schmidt</groupId>
-			<artifactId>imageinfo</artifactId>
-			<version>1.9</version>
-		</dependency>
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>slf4j-api</artifactId>
-			<version>${slf4jVersion}</version>
-		</dependency>
-		<dependency>
-			<groupId>javax.servlet</groupId>
-			<artifactId>servlet-api</artifactId>
-			<version>2.4</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>javax.servlet</groupId>
-			<artifactId>jstl</artifactId>
-			<version>1.1.2</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>javax.servlet.jsp</groupId>
-			<artifactId>jsp-api</artifactId>
-			<version>2.0</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<version>4.5</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>slf4j-nop</artifactId>
-			<version>${slf4jVersion}</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.mockito</groupId>
-			<artifactId>mockito-all</artifactId>
-			<version>1.7</version>
-			<scope>test</scope>
-		</dependency>
-	</dependencies>
-
-	<build>
-		<finalName>fckeditor-${project.artifactId}-${project.version}</finalName>
-		<plugins>
-			<plugin>
-				<artifactId>maven-antrun-plugin</artifactId>
-				<executions>
-					<execution>
-						<id>rewrite-tagreference-links</id>
-						<phase>post-site</phase>
-						<goals>
-							<goal>run</goal>
-						</goals>
-						<configuration>
-							<tasks>
-								<property name="ant.regexp.regexpimpl" value="org.apache.tools.ant.util.regexp.Jdk14RegexpRegexp" />
-								<replaceregexp byline="true" flags="m" file="target/site/tagreference.html">
-									<regexp pattern="&amp;lt;a href=&amp;quot;(\p{Graph}+)&amp;quot;\s*&amp;gt;(\p{Graph}+)&amp;lt;/a&amp;gt;" />
-									<substitution expression="&lt;a href=&quot;\1&quot;&gt;\2&lt;/a&gt;" />
-								</replaceregexp>
-							</tasks>
-						</configuration>
-					</execution>
-				</executions>
-			</plugin>
-		</plugins>
-	</build>
-
-	<reporting>
-		<plugins>
-			<plugin>
-				<groupId>net.sourceforge.maven-taglib</groupId>
-				<artifactId>maven-taglib-plugin</artifactId>
-				<version>2.4</version>
-			</plugin>
-			<plugin>
-				<artifactId>maven-surefire-report-plugin</artifactId>
-				<version>2.5</version>
-			</plugin>
-			<plugin>
-				<artifactId>maven-jxr-plugin</artifactId>
-				<version>2.1</version>
-			</plugin>
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>cobertura-maven-plugin</artifactId>
-				<version>2.4</version>
-			</plugin>
-			<!--<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>taglist-maven-plugin</artifactId>
-				<version>2.4</version>
-				<configuration>
-					<tagListOptions>
-						<tagClasses>
-							<tagClass>
-								<displayName>Todo Work</displayName>
-								<tags>
-									<tag>
-										<matchString>TODO</matchString>
-										<matchType>exact</matchType>
-									</tag>
-								</tags>
-							</tagClass>
-						</tagClasses>
-					</tagListOptions>
-				</configuration>
-			</plugin>-->
-			<plugin>
-				<artifactId>maven-project-info-reports-plugin</artifactId>
-				<version>2.1.2</version>
-				<reportSets>
-					<reportSet>
-						<reports>
-							<report>dependencies</report>
-							<report>summary</report>
-						</reports>
-					</reportSet>
-				</reportSets>
-			</plugin>
-			<plugin>
-				<artifactId>maven-javadoc-plugin</artifactId>
-				<version>2.7</version>
-				<configuration>
-					<quiet>true</quiet>
-					<show>package</show>
-					<docfilessubdirs>true</docfilessubdirs>
-					<keywords>true</keywords>
-					<detectOfflineLinks>false</detectOfflineLinks>
-		  			<links>
-						<link>http://tomcat.apache.org/tomcat-5.5-doc/servletapi/</link>
-						<link>http://tomcat.apache.org/tomcat-5.5-doc/jspapi/</link>
-					</links>
-				</configuration>
-				<reportSets>
-					<reportSet>
-						<reports>
-							<report>javadoc</report>
-						</reports>
-					</reportSet>
-				</reportSets>
-			</plugin>
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>clirr-maven-plugin</artifactId>
-				<version>2.2.2</version>
-				<configuration>
-					<comparisonVersion>2.6</comparisonVersion>
-					<minSeverity>info</minSeverity>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>javancss-maven-plugin</artifactId>
-				<version>2.0</version>
-				<configuration>
-					<lineThreshold>15</lineThreshold>
-				</configuration>
-			</plugin>
-		</plugins>
-	</reporting>
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>net.fckeditor</groupId>
+    <artifactId>fckeditor-java</artifactId>
+    <version>2.7-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>java-core</artifactId>
+  <packaging>jar</packaging>
+
+  <name>FCKeditor.Java Integration Core</name>
+  <description>
+    This Java library enables the FCKeditor to be used in a
+    Servlet/J2EE environment. It provides JSP tags for creating a
+    FCKeditor instance and a Servlet handling server-side user files
+    and folders.
+  </description>
+  <url>http://java.fckeditor.net</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+      <version>1.2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>1.3.2</version>
+    </dependency>
+    <dependency>
+      <groupId>org.devlib.schmidt</groupId>
+      <artifactId>imageinfo</artifactId>
+      <version>1.9</version>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>${slf4jVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>2.4</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>jstl</artifactId>
+      <version>1.1.2</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet.jsp</groupId>
+      <artifactId>jsp-api</artifactId>
+      <version>2.0</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.5</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-nop</artifactId>
+      <version>${slf4jVersion}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-all</artifactId>
+      <version>1.7</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <finalName>fckeditor-${project.artifactId}-${project.version}</finalName>
+    <plugins>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>rewrite-tagreference-links</id>
+            <phase>post-site</phase>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <configuration>
+              <tasks>
+                <property name="ant.regexp.regexpimpl" value="org.apache.tools.ant.util.regexp.Jdk14RegexpRegexp" />
+                <replaceregexp byline="true" flags="m" file="target/site/tagreference.html">
+                  <regexp pattern="&amp;lt;a href=&amp;quot;(\p{Graph}+)&amp;quot;\s*&amp;gt;(\p{Graph}+)&amp;lt;/a&amp;gt;" />
+                  <substitution expression="&lt;a href=&quot;\1&quot;&gt;\2&lt;/a&gt;" />
+                </replaceregexp>
+              </tasks>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>net.sourceforge.maven-taglib</groupId>
+        <artifactId>maven-taglib-plugin</artifactId>
+        <version>2.4</version>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+        <version>2.5</version>
+      </plugin>
+      <plugin>
+        <artifactId>maven-jxr-plugin</artifactId>
+        <version>2.1</version>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+        <version>2.4</version>
+      </plugin>
+      <!--<plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>taglist-maven-plugin</artifactId>
+        <version>2.4</version>
+        <configuration>
+          <tagListOptions>
+            <tagClasses>
+              <tagClass>
+                <displayName>Todo Work</displayName>
+                <tags>
+                  <tag>
+                    <matchString>TODO</matchString>
+                    <matchType>exact</matchType>
+                  </tag>
+                </tags>
+              </tagClass>
+            </tagClasses>
+          </tagListOptions>
+        </configuration>
+      </plugin>-->
+      <plugin>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <version>2.1.2</version>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>dependencies</report>
+              <report>summary</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.7</version>
+        <configuration>
+          <quiet>true</quiet>
+          <show>package</show>
+          <docfilessubdirs>true</docfilessubdirs>
+          <keywords>true</keywords>
+          <detectOfflineLinks>false</detectOfflineLinks>
+            <links>
+            <link>http://tomcat.apache.org/tomcat-5.5-doc/servletapi/</link>
+            <link>http://tomcat.apache.org/tomcat-5.5-doc/jspapi/</link>
+          </links>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>javadoc</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>clirr-maven-plugin</artifactId>
+        <version>2.2.2</version>
+        <configuration>
+          <comparisonVersion>2.6</comparisonVersion>
+          <minSeverity>info</minSeverity>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>javancss-maven-plugin</artifactId>
+        <version>2.0</version>
+        <configuration>
+          <lineThreshold>15</lineThreshold>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
 </project>
Index: /FCKeditor.Java/trunk/java-demo/pom.xml
===================================================================
--- /FCKeditor.Java/trunk/java-demo/pom.xml	(revision 5498)
+++ /FCKeditor.Java/trunk/java-demo/pom.xml	(revision 5499)
@@ -3,137 +3,137 @@
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  * Copyright (C) 2004-2010 Frederico Caldeira Knabben
- * 
+ *
  * == BEGIN LICENSE ==
- * 
+ *
  * Licensed under the terms of any of the following licenses at your
  * choice:
- * 
+ *
  *  - GNU General Public License Version 2 or later (the "GPL")
  *    http://www.gnu.org/licenses/gpl.html
- * 
+ *
  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  *    http://www.gnu.org/licenses/lgpl.html
- * 
+ *
  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  *    http://www.mozilla.org/MPL/MPL-1.1.html
- * 
+ *
  * == END LICENSE ==
  * @version: $Id$
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-	<modelVersion>4.0.0</modelVersion>
-	
-	<parent>
-		<groupId>net.fckeditor</groupId>
-		<artifactId>fckeditor-java</artifactId>
-		<version>2.7-SNAPSHOT</version>
-	</parent>
-	
-	<artifactId>java-demo</artifactId>
-	<packaging>war</packaging>
-	
-	<name>FCKeditor.Java Integration Demo Web Application</name>
-	<description>
-		This is a drop-in demo of the FCKeditor.Java Integration. It's
-		preconfigured with the Java library and a recent FCKeditor
-		version.
-	</description>
-	<url>http://java.fckeditor.net</url>
-	
-	<dependencies>
-		<dependency>
-			<groupId>net.fckeditor</groupId>
-			<artifactId>java-core</artifactId>
-			<version>2.7-SNAPSHOT</version>
-		</dependency>
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>slf4j-simple</artifactId>
-			<version>${slf4jVersion}</version>
-			<scope>runtime</scope>
-		</dependency>
-	</dependencies>
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
 
-	<build>
-		<finalName>fckeditor-${project.artifactId}-${project.version}</finalName>
-		<plugins>
-			<plugin>
-				<groupId>org.mortbay.jetty</groupId>
-				<artifactId>maven-jetty-plugin</artifactId>
-				<version>6.1.19</version>
-				<configuration>
-					<contextPath>/</contextPath>
-					<scanIntervalSeconds>3</scanIntervalSeconds>
-				</configuration>
-			</plugin>
-			<plugin>
-				<artifactId>maven-war-plugin</artifactId>
-				<configuration>
-					<webResources>
-						<resource>
-							<directory>..</directory>
-							<filtering>false</filtering>
-							<includes>
-								<include>LICENSE.txt</include>
-							</includes>
-						</resource>
-					</webResources>
-					<warSourceIncludes>
-						fckeditor/editor/,fckeditor/_samples/_plugins/,fckeditor/fckconfig.js,fckeditor/*.xml,WEB-INF/,jsp/,sample*,index.jsp,fckeditor.gif
-					</warSourceIncludes>
-					<warSourceExcludes>
-						fckeditor/editor/filemanager/connectors/
-					</warSourceExcludes>
-					<archive>
-						<addMavenDescriptor>false</addMavenDescriptor>
-						<manifest>
-							<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
-						</manifest>
-						<manifestEntries>
-							<Implementation-URL>${project.url}</Implementation-URL>
-							<Built-By>${project.organization.name}</Built-By>
-						</manifestEntries>
-					</archive>
-					<filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
-				</configuration>
-			</plugin>
-			<plugin>
-				<artifactId>maven-clean-plugin</artifactId>
-				<configuration>
-					<filesets>
-						<fileset>
-							<directory>src/main/webapp</directory>
-							<includes>
-								<include>userfiles/</include>
-							</includes>
-						</fileset>
-					</filesets>
-				</configuration>
-			</plugin>
-			<plugin>
-				<artifactId>maven-deploy-plugin</artifactId>
-				<configuration>
-					<skip>true</skip>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
+  <parent>
+    <groupId>net.fckeditor</groupId>
+    <artifactId>fckeditor-java</artifactId>
+    <version>2.7-SNAPSHOT</version>
+  </parent>
 
-	<reporting>
-		<plugins>
-			<plugin>
-				<artifactId>maven-project-info-reports-plugin</artifactId>
-				<version>2.1.2</version>
-				<reportSets>
-					<reportSet>
-						<reports>
-							<report>dependencies</report>
-							<report>summary</report>
-						</reports>
-					</reportSet>
-				</reportSets>
-			</plugin>
-		</plugins>
-	</reporting>
+  <artifactId>java-demo</artifactId>
+  <packaging>war</packaging>
+
+  <name>FCKeditor.Java Integration Demo Web Application</name>
+  <description>
+    This is a drop-in demo of the FCKeditor.Java Integration. It's
+    preconfigured with the Java library and a recent FCKeditor
+    version.
+  </description>
+  <url>http://java.fckeditor.net</url>
+
+  <dependencies>
+    <dependency>
+      <groupId>net.fckeditor</groupId>
+      <artifactId>java-core</artifactId>
+      <version>2.7-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-simple</artifactId>
+      <version>${slf4jVersion}</version>
+      <scope>runtime</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <finalName>fckeditor-${project.artifactId}-${project.version}</finalName>
+    <plugins>
+      <plugin>
+        <groupId>org.mortbay.jetty</groupId>
+        <artifactId>maven-jetty-plugin</artifactId>
+        <version>6.1.19</version>
+        <configuration>
+          <contextPath>/</contextPath>
+          <scanIntervalSeconds>3</scanIntervalSeconds>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-war-plugin</artifactId>
+        <configuration>
+          <webResources>
+            <resource>
+              <directory>..</directory>
+              <filtering>false</filtering>
+              <includes>
+                <include>LICENSE.txt</include>
+              </includes>
+            </resource>
+          </webResources>
+          <warSourceIncludes>
+            fckeditor/editor/,fckeditor/_samples/_plugins/,fckeditor/fckconfig.js,fckeditor/*.xml,WEB-INF/,jsp/,sample*,index.jsp,fckeditor.gif
+          </warSourceIncludes>
+          <warSourceExcludes>
+            fckeditor/editor/filemanager/connectors/
+          </warSourceExcludes>
+          <archive>
+            <addMavenDescriptor>false</addMavenDescriptor>
+            <manifest>
+              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+            </manifest>
+            <manifestEntries>
+              <Implementation-URL>${project.url}</Implementation-URL>
+              <Built-By>${project.organization.name}</Built-By>
+            </manifestEntries>
+          </archive>
+          <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-clean-plugin</artifactId>
+        <configuration>
+          <filesets>
+            <fileset>
+              <directory>src/main/webapp</directory>
+              <includes>
+                <include>userfiles/</include>
+              </includes>
+            </fileset>
+          </filesets>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <version>2.1.2</version>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>dependencies</report>
+              <report>summary</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
 </project>
Index: /FCKeditor.Java/trunk/pom.xml
===================================================================
--- /FCKeditor.Java/trunk/pom.xml	(revision 5498)
+++ /FCKeditor.Java/trunk/pom.xml	(revision 5499)
@@ -22,390 +22,390 @@
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-	<modelVersion>4.0.0</modelVersion>
-
-	<groupId>net.fckeditor</groupId>
-	<artifactId>fckeditor-java</artifactId>
-	<version>2.7-SNAPSHOT</version>
-	<packaging>pom</packaging>
-
-	<name>FCKeditor.Java Integration</name>
-	<description>
-		The FCKeditor.Java Integration fosters the entire project
-		documentation, the Java library, and a drop-in demo webapp. All
-		three depict and enable you to learn and to integrate the
-		FCKeditor in your web environment.
-	</description>
-	<url>http://java.fckeditor.net</url>
-	<inceptionYear>2004</inceptionYear>
-	<organization>
-		<name>Frederico Caldeira Knabben</name>
-		<url>http://www.fredck.com</url>
-	</organization>
-	<licenses>
-		<license>
-			<name>GPL, LGPL, MPL</name>
-			<url>LICENSE.txt</url>
-		</license>
-	</licenses>
-
-	<developers>
-		<developer>
-			<id>fredck</id>
-			<name>Frederico Caldeira Knabben</name>
-			<url>http://www.fredck.com</url>
-			<organization>FredCK.com</organization>
-			<organizationUrl>http://www.fredck.com</organizationUrl>
-			<roles>
-				<role>Head Project Manager</role>
-			</roles>
-			<timezone>+1</timezone>
-		</developer>
-		<developer>
-			<id>th-schwarz</id>
-			<name>Thilo Schwarz</name>
-			<email>thilo.schwarz AT gmail.com</email>
-			<url>http://www.s-th.info</url>
-			<organization>Poor Man's CMS</organization>
-			<organizationUrl>http://poormans.sf.net</organizationUrl>
-			<roles>
-				<role>Project Manager</role>
-				<role>Developer</role>
-			</roles>
-			<timezone>+1</timezone>
-		</developer>
-		<developer>
-			<id>mosipov</id>
-			<name>Michael Osipov</name>
-			<email>michael-o AT users.sourceforge.net</email>
-			<roles>
-				<role>Project Manager</role>
-				<role>Developer</role>
-			</roles>
-			<timezone>+1</timezone>
-		</developer>
-	</developers>
-
-	<mailingLists>
-		<mailingList>
-			<name>FCKeditor Developers List</name>
-			<subscribe>
-				https://lists.sourceforge.net/lists/listinfo/fckeditor-developers
-			</subscribe>
-			<unsubscribe>
-				https://lists.sourceforge.net/lists/listinfo/fckeditor-developers
-			</unsubscribe>
-			<archive>
-				http://sourceforge.net/mailarchive/forum.php?forum_name=fckeditor-developers
-			</archive>
-		</mailingList>
-		<mailingList>
-			<name>FCKeditor Testers List</name>
-			<subscribe>
-				https://lists.sourceforge.net/lists/listinfo/fckeditor-testers
-			</subscribe>
-			<unsubscribe>
-				https://lists.sourceforge.net/lists/listinfo/fckeditor-testers
-			</unsubscribe>
-			<archive>
-				http://sourceforge.net/mailarchive/forum.php?forum_name=fckeditor-testers
-			</archive>
-		</mailingList>
-		<mailingList>
-			<name>FCKeditor Trac Activity</name>
-			<subscribe>
-				https://lists.sourceforge.net/lists/listinfo/fckeditor-trac
-			</subscribe>
-			<unsubscribe>
-				https://lists.sourceforge.net/lists/listinfo/fckeditor-trac
-			</unsubscribe>
-		</mailingList>
-		<mailingList>
-			<name>FCKeditor Commits List</name>
-			<subscribe>
-				https://lists.sourceforge.net/lists/listinfo/fckeditor-commits
-			</subscribe>
-			<unsubscribe>
-				https://lists.sourceforge.net/lists/listinfo/fckeditor-commits
-			</unsubscribe>
-		</mailingList>
-	</mailingLists>
-
-	<prerequisites>
-		<maven>${mavenVersion}</maven>
-	</prerequisites>
-
-	<modules>
-		<module>java-core</module>
-		<module>java-demo</module>
-	</modules>
-
-	<scm>
-		<connection>
-			scm:svn:http://svn.fckeditor.net/FCKeditor.Java/trunk
-		</connection>
-		<developerConnection>
-			scm:svn:https://svn.fckeditor.net/FCKeditor.Java/trunk
-		</developerConnection>
-		<url>http://dev.fckeditor.net/browser/FCKeditor.Java/trunk</url>
-	</scm>
-	<issueManagement>
-		<system>Trac</system>
-		<url>http://dev.fckeditor.net/</url>
-	</issueManagement>
-	<distributionManagement>
-		<repository>
-			<id>local-java.fckeditor.net</id>
-			<url>file:///home/mosipov/public_html/m2repo</url>
-		</repository>
-		<snapshotRepository>
-			<id>local-java.fckeditor.net</id>
-			<url>file:///home/mosipov/public_html/m2repo-snapshots</url>
-		</snapshotRepository>
-		<site>
-			<id>local-java.fckeditor.net</id>
-			<url>file:///home/mosipov/public_html/docs</url>
-		</site>
-	</distributionManagement>
-
-	<properties>
-		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-		<!-- SLF4J version range [1.5.5,1.6) won't work due to http://jira.codehaus.org/browse/MNG-3806 -->
-		<slf4jVersion>1.5.8</slf4jVersion>
-		<currentVersion>${project.version}</currentVersion>
-		<FCKeditorVersion>2.6.6</FCKeditorVersion>
-		<ticketUrl>${project.issueManagement.url}ticket</ticketUrl>
-		<mavenVersion>2.0.10</mavenVersion>
-	</properties>
-
-	<build>
-		<defaultGoal>package</defaultGoal>
-		<!-- for future Maven 2.1 use -->
-		<!--<sourceEncoding>UTF-8</sourceEncoding>-->
-		<pluginManagement>
-			<plugins>
-				<plugin>
-					<artifactId>maven-site-plugin</artifactId>
-					<version>2.0.1</version>
-				</plugin>
-	 			<plugin>
-					<artifactId>maven-javadoc-plugin</artifactId>
-					<version>2.7</version>
-					<configuration>
-						<archive>
-							<manifest>
-								<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
-							</manifest>
-							<manifestEntries>
-								<Implementation-URL>${project.url}</Implementation-URL>
-								<Built-By>${project.organization.name}</Built-By>
-							</manifestEntries>
-						</archive>
-						<!-- ============================================================ -->
-						<!-- This can be disabled for now because javadoc plugin inherits -->
-						<!-- from reports an we have only one module with javadoc.        -->
-						<!-- ============================================================ -->
-						<!--
-						<quiet>true</quiet>
-						<show>package</show>
-						<docfilessubdirs>true</docfilessubdirs>
-						<keywords>true</keywords>
-						<detectOfflineLinks>false</detectOfflineLinks>
-						 -->
-					</configuration>
-				</plugin>
-				<plugin>
-					<artifactId>maven-source-plugin</artifactId>
-					<version>2.1.1</version>
-					<configuration>
-						<archive>
-							<manifest>
-								<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
-							</manifest>
-							<manifestEntries>
-								<Implementation-URL>${project.url}</Implementation-URL>
-								<Built-By>${project.organization.name}</Built-By>
-							</manifestEntries>
-						</archive>
-						<excludes>
-							<exclude>**/package-info.java</exclude>
-						</excludes>
-						<excludeResources>true</excludeResources>
-					</configuration>
-				</plugin>
-				<plugin>
-					<artifactId>maven-deploy-plugin</artifactId>
-					<version>2.4</version>
-				</plugin>
-				<plugin>
-					<artifactId>maven-release-plugin</artifactId>
-					<version>2.0</version>
-				</plugin>
-				<plugin>
-					<artifactId>maven-resources-plugin</artifactId>
-					<version>2.3</version>
-				</plugin>
-				<plugin>
-					<artifactId>maven-surefire-plugin</artifactId>
-					<version>2.4.3</version>
-				</plugin>
-				<plugin>
-					<artifactId>maven-war-plugin</artifactId>
-					<version>2.1-beta-1</version>
-				</plugin>
-				<plugin>
-					<artifactId>maven-install-plugin</artifactId>
-					<version>2.3</version>
-				</plugin>
-				<plugin>
-					<artifactId>maven-assembly-plugin</artifactId>
-					<version>2.2-beta-5</version>
-				</plugin>
-				<plugin>
-					<artifactId>maven-jar-plugin</artifactId>
-					<configuration>
-						<archive>
-							<manifest>
-								<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
-							</manifest>
-							<manifestEntries>
-								<Implementation-URL>${project.url}</Implementation-URL>
-								<Built-By>${project.organization.name}</Built-By>
-							</manifestEntries>
-						</archive>
-					</configuration>
-				</plugin>
-				<plugin>
-					<artifactId>maven-antrun-plugin</artifactId>
-					<version>1.3</version>
-					<dependencies>
-						<dependency>
-							<groupId>ant</groupId>
-							<artifactId>ant-nodeps</artifactId>
-							<version>1.6.5</version>
-						</dependency>
-					</dependencies>
-				</plugin>
-				<plugin>
-					<artifactId>maven-compiler-plugin</artifactId>
-					<version>2.3</version>
-					<configuration>
-						<target>jsr14</target>
-						<excludes>
-							<exclude>**/package-info.java</exclude>
-						</excludes>
-					</configuration>
-					<executions>
-						<execution>
-							<id>test-compiler</id>
-							<phase>process-test-sources</phase>
-							<goals>
-								<goal>testCompile</goal>
-							</goals>
-							<configuration>
-								<target>1.5</target>
-							</configuration>
-						</execution>
-					</executions>
-				</plugin>
-				<plugin>
-					<artifactId>maven-clean-plugin</artifactId>
-					<version>2.3</version>
-				</plugin>
-			</plugins>
-		</pluginManagement>
-		<plugins>
-			<plugin>
-				<artifactId>maven-assembly-plugin</artifactId>
-				<configuration>
-					<descriptors>
-						<descriptor>
-							src/main/assembly/src.xml
-						</descriptor>
-						<descriptor>
-							src/main/assembly/bin.xml
-						</descriptor>
-					</descriptors>
-				</configuration>
-			</plugin>
-			<plugin>
-				<artifactId>maven-antrun-plugin</artifactId>
-				<executions>
-					<execution>
-						<id>rewrite-site-links</id>
-						<phase>pre-site</phase>
-						<goals>
-							<goal>run</goal>
-						</goals>
-						<configuration>
-							<tasks>
-								<copy overwrite="true" todir="src/site" flatten="true">
-									<fileset dir="..">
-										<include name="src/site/site.xml" />
-									</fileset>
-								</copy>
-								<replace value="&lt;src&gt;../" token="&lt;src&gt;/" dir="..">
-									<include name="${project.artifactId}/src/site/site.xml" />
-									<exclude name="fckeditor-java/src/site/site.xml" />
-								</replace>
-								<replace value="href=&quot;../" token="href=&quot;/" dir="..">
-									<include name="${project.artifactId}/src/site/site.xml" />
-									<exclude name="fckeditor-java/src/site/site.xml" />
-								</replace>
-								<replace value="href=&quot;" token="href=&quot;../${project.artifactId}/" dir="..">
-									<include name="${project.artifactId}/src/site/site.xml" />
-									<exclude name="fckeditor-java/src/site/site.xml" />
-								</replace>
-								<replace value="href=&quot;../images" token="href=&quot;images" dir="..">
-									<include name="${project.artifactId}/src/site/site.xml" />
-									<exclude name="fckeditor-java/src/site/site.xml" />
-								</replace>
-							</tasks>
-						</configuration>
-					</execution>
-				</executions>
-			</plugin>
-		</plugins>
-	</build>
-
-	<reporting>
-		<!-- for future Maven 2.1 use -->
-		<!-- <outputEncoding>UTF-8</outputEncoding> -->
-		<plugins>
-			<plugin>
-				<artifactId>maven-project-info-reports-plugin</artifactId>
-				<version>2.1.2</version>
-				<inherited>false</inherited>
-				<reportSets>
-					<reportSet>
-						<reports>
-							<report>issue-tracking</report>
-							<report>mailing-list</report>
-							<report>license</report>
-							<report>summary</report>
-							<report>project-team</report>
-							<report>scm</report>
-						</reports>
-					</reportSet>
-				</reportSets>
-			</plugin>
-			<plugin>
-				<artifactId>maven-changes-plugin</artifactId>
-				<!-- Version 2.1 fails due to MCHANGES-137 -->
-				<version>2.0</version>
-				<configuration>
-					<issueLinkTemplate>
-						%URL%/ticket/%ISSUE%
-					</issueLinkTemplate>
-				</configuration>
-				<reportSets>
-					<reportSet>
-						<reports>
-							<report>changes-report</report>
-						</reports>
-					</reportSet>
-				</reportSets>
-			</plugin>
-		</plugins>
-	</reporting>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>net.fckeditor</groupId>
+  <artifactId>fckeditor-java</artifactId>
+  <version>2.7-SNAPSHOT</version>
+  <packaging>pom</packaging>
+
+  <name>FCKeditor.Java Integration</name>
+  <description>
+    The FCKeditor.Java Integration fosters the entire project
+    documentation, the Java library, and a drop-in demo webapp. All
+    three depict and enable you to learn and to integrate the
+    FCKeditor in your web environment.
+  </description>
+  <url>http://java.fckeditor.net</url>
+  <inceptionYear>2004</inceptionYear>
+  <organization>
+    <name>Frederico Caldeira Knabben</name>
+    <url>http://www.fredck.com</url>
+  </organization>
+  <licenses>
+    <license>
+      <name>GPL, LGPL, MPL</name>
+      <url>LICENSE.txt</url>
+    </license>
+  </licenses>
+
+  <developers>
+    <developer>
+      <id>fredck</id>
+      <name>Frederico Caldeira Knabben</name>
+      <url>http://www.fredck.com</url>
+      <organization>FredCK.com</organization>
+      <organizationUrl>http://www.fredck.com</organizationUrl>
+      <roles>
+        <role>Head Project Manager</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <id>th-schwarz</id>
+      <name>Thilo Schwarz</name>
+      <email>thilo.schwarz AT gmail.com</email>
+      <url>http://www.s-th.info</url>
+      <organization>Poor Man's CMS</organization>
+      <organizationUrl>http://poormans.sf.net</organizationUrl>
+      <roles>
+        <role>Project Manager</role>
+        <role>Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <id>mosipov</id>
+      <name>Michael Osipov</name>
+      <email>michael-o AT users.sourceforge.net</email>
+      <roles>
+        <role>Project Manager</role>
+        <role>Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+  </developers>
+
+  <mailingLists>
+    <mailingList>
+      <name>FCKeditor Developers List</name>
+      <subscribe>
+        https://lists.sourceforge.net/lists/listinfo/fckeditor-developers
+      </subscribe>
+      <unsubscribe>
+        https://lists.sourceforge.net/lists/listinfo/fckeditor-developers
+      </unsubscribe>
+      <archive>
+        http://sourceforge.net/mailarchive/forum.php?forum_name=fckeditor-developers
+      </archive>
+    </mailingList>
+    <mailingList>
+      <name>FCKeditor Testers List</name>
+      <subscribe>
+        https://lists.sourceforge.net/lists/listinfo/fckeditor-testers
+      </subscribe>
+      <unsubscribe>
+        https://lists.sourceforge.net/lists/listinfo/fckeditor-testers
+      </unsubscribe>
+      <archive>
+        http://sourceforge.net/mailarchive/forum.php?forum_name=fckeditor-testers
+      </archive>
+    </mailingList>
+    <mailingList>
+      <name>FCKeditor Trac Activity</name>
+      <subscribe>
+        https://lists.sourceforge.net/lists/listinfo/fckeditor-trac
+      </subscribe>
+      <unsubscribe>
+        https://lists.sourceforge.net/lists/listinfo/fckeditor-trac
+      </unsubscribe>
+    </mailingList>
+    <mailingList>
+      <name>FCKeditor Commits List</name>
+      <subscribe>
+        https://lists.sourceforge.net/lists/listinfo/fckeditor-commits
+      </subscribe>
+      <unsubscribe>
+        https://lists.sourceforge.net/lists/listinfo/fckeditor-commits
+      </unsubscribe>
+    </mailingList>
+  </mailingLists>
+
+  <prerequisites>
+    <maven>${mavenVersion}</maven>
+  </prerequisites>
+
+  <modules>
+    <module>java-core</module>
+    <module>java-demo</module>
+  </modules>
+
+  <scm>
+    <connection>
+      scm:svn:http://svn.fckeditor.net/FCKeditor.Java/trunk
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.fckeditor.net/FCKeditor.Java/trunk
+    </developerConnection>
+    <url>http://dev.fckeditor.net/browser/FCKeditor.Java/trunk</url>
+  </scm>
+  <issueManagement>
+    <system>Trac</system>
+    <url>http://dev.fckeditor.net/</url>
+  </issueManagement>
+  <distributionManagement>
+    <repository>
+      <id>local-java.fckeditor.net</id>
+      <url>file:///home/mosipov/public_html/m2repo</url>
+    </repository>
+    <snapshotRepository>
+      <id>local-java.fckeditor.net</id>
+      <url>file:///home/mosipov/public_html/m2repo-snapshots</url>
+    </snapshotRepository>
+    <site>
+      <id>local-java.fckeditor.net</id>
+      <url>file:///home/mosipov/public_html/docs</url>
+    </site>
+  </distributionManagement>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+    <!-- SLF4J version range [1.5.5,1.6) won't work due to http://jira.codehaus.org/browse/MNG-3806 -->
+    <slf4jVersion>1.5.8</slf4jVersion>
+    <currentVersion>${project.version}</currentVersion>
+    <FCKeditorVersion>2.6.6</FCKeditorVersion>
+    <ticketUrl>${project.issueManagement.url}ticket</ticketUrl>
+    <mavenVersion>2.0.10</mavenVersion>
+  </properties>
+
+  <build>
+    <defaultGoal>package</defaultGoal>
+    <!-- for future Maven 2.1 use -->
+    <!--<sourceEncoding>UTF-8</sourceEncoding>-->
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <artifactId>maven-site-plugin</artifactId>
+          <version>2.0.1</version>
+        </plugin>
+         <plugin>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <version>2.7</version>
+          <configuration>
+            <archive>
+              <manifest>
+                <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+              </manifest>
+              <manifestEntries>
+                <Implementation-URL>${project.url}</Implementation-URL>
+                <Built-By>${project.organization.name}</Built-By>
+              </manifestEntries>
+            </archive>
+            <!-- ============================================================ -->
+            <!-- This can be disabled for now because javadoc plugin inherits -->
+            <!-- from reports an we have only one module with javadoc.        -->
+            <!-- ============================================================ -->
+            <!--
+            <quiet>true</quiet>
+            <show>package</show>
+            <docfilessubdirs>true</docfilessubdirs>
+            <keywords>true</keywords>
+            <detectOfflineLinks>false</detectOfflineLinks>
+             -->
+          </configuration>
+        </plugin>
+        <plugin>
+          <artifactId>maven-source-plugin</artifactId>
+          <version>2.1.1</version>
+          <configuration>
+            <archive>
+              <manifest>
+                <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+              </manifest>
+              <manifestEntries>
+                <Implementation-URL>${project.url}</Implementation-URL>
+                <Built-By>${project.organization.name}</Built-By>
+              </manifestEntries>
+            </archive>
+            <excludes>
+              <exclude>**/package-info.java</exclude>
+            </excludes>
+            <excludeResources>true</excludeResources>
+          </configuration>
+        </plugin>
+        <plugin>
+          <artifactId>maven-deploy-plugin</artifactId>
+          <version>2.4</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-release-plugin</artifactId>
+          <version>2.0</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-resources-plugin</artifactId>
+          <version>2.3</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <version>2.4.3</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-war-plugin</artifactId>
+          <version>2.1-beta-1</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-install-plugin</artifactId>
+          <version>2.3</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-assembly-plugin</artifactId>
+          <version>2.2-beta-5</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-jar-plugin</artifactId>
+          <configuration>
+            <archive>
+              <manifest>
+                <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+              </manifest>
+              <manifestEntries>
+                <Implementation-URL>${project.url}</Implementation-URL>
+                <Built-By>${project.organization.name}</Built-By>
+              </manifestEntries>
+            </archive>
+          </configuration>
+        </plugin>
+        <plugin>
+          <artifactId>maven-antrun-plugin</artifactId>
+          <version>1.3</version>
+          <dependencies>
+            <dependency>
+              <groupId>ant</groupId>
+              <artifactId>ant-nodeps</artifactId>
+              <version>1.6.5</version>
+            </dependency>
+          </dependencies>
+        </plugin>
+        <plugin>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>2.3</version>
+          <configuration>
+            <target>jsr14</target>
+            <excludes>
+              <exclude>**/package-info.java</exclude>
+            </excludes>
+          </configuration>
+          <executions>
+            <execution>
+              <id>test-compiler</id>
+              <phase>process-test-sources</phase>
+              <goals>
+                <goal>testCompile</goal>
+              </goals>
+              <configuration>
+                <target>1.5</target>
+              </configuration>
+            </execution>
+          </executions>
+        </plugin>
+        <plugin>
+          <artifactId>maven-clean-plugin</artifactId>
+          <version>2.3</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+    <plugins>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <descriptors>
+            <descriptor>
+              src/main/assembly/src.xml
+            </descriptor>
+            <descriptor>
+              src/main/assembly/bin.xml
+            </descriptor>
+          </descriptors>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>rewrite-site-links</id>
+            <phase>pre-site</phase>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <configuration>
+              <tasks>
+                <copy overwrite="true" todir="src/site" flatten="true">
+                  <fileset dir="..">
+                    <include name="src/site/site.xml" />
+                  </fileset>
+                </copy>
+                <replace value="&lt;src&gt;../" token="&lt;src&gt;/" dir="..">
+                  <include name="${project.artifactId}/src/site/site.xml" />
+                  <exclude name="fckeditor-java/src/site/site.xml" />
+                </replace>
+                <replace value="href=&quot;../" token="href=&quot;/" dir="..">
+                  <include name="${project.artifactId}/src/site/site.xml" />
+                  <exclude name="fckeditor-java/src/site/site.xml" />
+                </replace>
+                <replace value="href=&quot;" token="href=&quot;../${project.artifactId}/" dir="..">
+                  <include name="${project.artifactId}/src/site/site.xml" />
+                  <exclude name="fckeditor-java/src/site/site.xml" />
+                </replace>
+                <replace value="href=&quot;../images" token="href=&quot;images" dir="..">
+                  <include name="${project.artifactId}/src/site/site.xml" />
+                  <exclude name="fckeditor-java/src/site/site.xml" />
+                </replace>
+              </tasks>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <!-- for future Maven 2.1 use -->
+    <!-- <outputEncoding>UTF-8</outputEncoding> -->
+    <plugins>
+      <plugin>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <version>2.1.2</version>
+        <inherited>false</inherited>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>issue-tracking</report>
+              <report>mailing-list</report>
+              <report>license</report>
+              <report>summary</report>
+              <report>project-team</report>
+              <report>scm</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+      <plugin>
+        <artifactId>maven-changes-plugin</artifactId>
+        <!-- Version 2.1 fails due to MCHANGES-137 -->
+        <version>2.0</version>
+        <configuration>
+          <issueLinkTemplate>
+            %URL%/ticket/%ISSUE%
+          </issueLinkTemplate>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>changes-report</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
 </project>
