Hi all,
I'm been using Maven for about a week, and think it's pretty cool
(well, a little slow yet, but pretty cool ;)).
I just wanted to point out a couple of minor bugs:
1) In the plugin.jelly file of the checkstyle plugin, line 62,
the name of the LICENSE file should be retrieved from the properties,
not hardcoded as LICENSE.txt
2) In the plugin.jelly file of the java plugin, the simlink operation
is hardcoded on the jakarta.apache.org website.
The patch below seems to work for me, but please double check...
--- src/plugins-build/java/plugin.jelly 14 Jul 2002 19:09:20 -0000 1.1.1.1
+++ src/plugins-build/java/plugin.jelly 17 Jul 2002 13:39:42 -0000
@@ -174,11 +174,8 @@
-->
- <property name="site" value="jakarta.apache.org"/>
- <property name="dir"
value="/www/jakarta.apache.org/turbine/jars2/${pom.id}/jars"/>
-
<exec dir="." executable="${maven.ssh.executable}">
- <arg line="${site} -l ${maven.username} 'cd ${dir}; ln -sf
${maven.jar.to.deploy} ${pom.id}-SNAPSHOT.jar'"/>
+ <arg line="${pom.siteAddress} -l ${maven.username} 'cd
${maven.remote.jars.dir}; ln -sf ${maven.jar.to.deploy}
${pom.id}-SNAPSHOT.jar'"/>
</exec>
</goal>
Hope this helps,
Sincerely,
--
Julien
PS: should these mails go on the dev-mailing list or is it ok to use
this one?
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>