quickstart archetype adds invalid maven-compiler-plugin configuration
---------------------------------------------------------------------
Key: WICKET-2173
URL: https://issues.apache.org/jira/browse/WICKET-2173
Project: Wicket
Issue Type: Bug
Components: wicket-quickstart
Affects Versions: 1.4-RC2
Environment: any
Reporter: Francis De Brabandere
Priority: Minor
the maven-compiler-plugin configuration created by the quickstart archetype
contains an invalid tag: <optimise>
this should be <optimize>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<source>1.5</source>
<target>1.5</target>
*<optimise>true</optimise>*
<debug>true</debug>
</configuration>
</plugin>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.