You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Henri Yandell <ba...@generationjava.com> on 2003/02/28 03:44:56 UTC

Switching to b8

I've made an attempt to move from b7 to b8 on both a Linux box and an OS X
and have hit the same errors, so thought I'd report them here.

I install as follows:

Grab the zip from Maven site.
Unzip.
Mv new directory into same directoy as my previous version, so I now have:
  maven-1.0-beta-8  sitting next to maven-1.0-beta-7
Update symlink of 'maven' so it points to b8 and not b7.

Then I got a simple project, with a few dependencies.

I type:

maven clean

I get a bunch of jars downloaded and eventually things are cleaned [except
for maven.log, which just feels a bit odd].

Then I type:

maven

This resolves really quickly with no output other than the banner.
Maven.log has:

2003-02-27 21:40:06,208 INFO  org.apache.maven.plugin.PluginManager - Initializing Plugins!
2003-02-27 21:40:07,164 INFO  org.apache.maven.plugin.PluginManager - Finished initializing Plugins!
2003-02-27 21:40:12,365 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "available" element.
2003-02-27 21:40:12,456 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "available" element.
2003-02-27 21:40:12,469 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "path" element.
2003-02-27 21:40:12,695 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "path" element.

If I do:

maven java:jar

then the jar builds fine.

Next I usually do a:

maven site    [or sometimes maven site:generate depending on frame of mind]

This results in:

...various successful info...
maven-checkstyle-plugin:report:

maven-changelog-plugin:report:
    [echo] Generating the changelog report

BUILD FAILED
null:49:15: <changelog:changelog> null
Total time:  29 seconds

This is in JDK1.4 on both machines, Linux and the OS X early access
version. JDK 1.3 on the Apple makes no difference.


Any ideas? I've spent a while browsing the archives and the JIRA, but
neither seem to have much to say on the matter.

Hen


Re: Switching to b8

Posted by Pete Kazmier <pe...@kazmier.com>.
>>>>> Henri Yandell writes:

Henri> Then I type:

Henri> maven

Henri> This resolves really quickly with no output other than the
Henri> banner.  Maven.log has:

The default goal was removed, you can provide your own default in your
project's maven.xml file (in the project tag).

Thanks,
Pete