You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Brett Porter <br...@apache.org> on 2005/09/12 07:59:09 UTC

[ANN] Maven 1.1 Beta 2 Released

The Apache Maven team is pleased to announce the release of Maven 1.1 Beta 2

http://maven.apache.org/start/download.html

Maven is a project management and project comprehension tool. Maven is 
based on the concept of a project object model: builds, documentation 
creation, site publication, and distribution publication are all 
controlled from the project object model. Maven also provides tools to 
create source metrics, change logs based directly on source repository, 
and source cross-references.

For a list of changes since 1.1 beta 1, please see JIRA [2].

The 1.1 release focuses on the following objectives:

    * Integration of Maven 2 technologies such as Maven Wagon, Maven SCM and the new model code
    * Ant 1.6.5 support, including forkmode="once"
    * Upgrade to later releases of dependencies, in particular Jelly
    * Significant improvements in memory usage
    * Improved POM layout
    * Bugfixes

With just a few exceptions [1], Maven 1.1 is backwards compatible with Maven 1.0.

*IMPORTANT: * You must ensure that Maven 1.1 is first in your path if you want to have it installed side-by-side with Maven 1.0.2

We hope you enjoy using Maven! If you have any questions, please consult:

    * the FAQ: http://maven.apache.org/faq.html
    * the maven-user mailing list: http://maven.apache.org/mail-lists.html

For news and information, see:

    * Maven Blogs: http://www.mavenblogs.com/

- The Apache Maven Team

[1] http://maven.apache.org/reference/backwards-compatibility.html
[2] http://jira.codehaus.org/secure/ReleaseNote.jspa?version=10211&styleName=Html&projectId=10030&Create=Create


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: [ANN] Maven 1.1 Beta 2 Released

Posted by jean-laurent <je...@gmail.com>.
Hi, 

I just ran into the same problem myself.
As a quick temporary fix you can use the 0.9.2-SNAPSHOT version of the
findbugs plugin, which is available through ibiblio.

It works with maven 1.1 beta2.

I just updated this to my project.xml :

    <dependency>
        <groupId>maven-plugins</groupId>
        <artifactId>maven-findbugs-plugin</artifactId>
        <version>0.9.2-SNAPSHOT</version>
        <type>plugin</type>
    </dependency> 


--
jean-laurent

On 9/12/05, Vincent Massol <vm...@pivolis.com> wrote:
> 
> 
> > -----Original Message-----
> > From: Arnaud HERITIER [mailto:aheritier@gmail.com]
> > Sent: lundi 12 septembre 2005 12:16
> > To: Maven Users List; echofloripa.yell@gmail.com
> > Subject: Re: [ANN] Maven 1.1 Beta 2 Released
> >
> > For your first error, can you launch maven with the -e option to see which
> > pom is invalid ?
> >
> > For your second error you must re-install the findbugs plugin because it
> > was
> > certainly deleted during the installation (it doesn't come with maven).
> 
> Also note that you may have some issue with the findbugs plugin and Maven
> 1.1. See http://tinyurl.com/b7ev7
> 
> [snip]
> -Vincent
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 


-- 
Jean-Laurent

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Building Mavenbook sources (was RE: [ANN] Maven 1.1 Beta 2 Released)

Posted by Vincent Massol <vm...@pivolis.com>.
Hi Emerson,

> -----Original Message-----
> From: emerson cargnin [mailto:echofloripa.yell@gmail.com]
> Sent: lundi 12 septembre 2005 13:13
> To: Maven Users List
> Subject: Fwd: [ANN] Maven 1.1 Beta 2 Released
> 
> Hummmm....
> 
> I was testing mavenbook with maven 1.0.2, I had to update changelog
> plugin in order to succefull build the site.
> I used the command:
> 
> maven plugin:download
> -Dmaven.repo.remote=http://www.ibiblio.org/maven,
> http://cvs.apache.org/repository/   -DgroupId=maven
> -DartifactId=maven-changelog-plugin   -Dversion=1.7
> 
> Gonna test my project to see if now it works :)

Actually I you have a look at Appendix A you'll see listed the minimal
versions of all the plugins required for building the mavenbook source code.
For the changelog plugin the minimal version is 1.8.

Thanks
-Vincent

> On 12/09/05, Vincent Massol <vm...@pivolis.com> wrote:
> >
> >
> > > -----Original Message-----
> > > From: Arnaud HERITIER [mailto:aheritier@gmail.com]
> > > Sent: lundi 12 septembre 2005 12:16
> > > To: Maven Users List; echofloripa.yell@gmail.com
> > > Subject: Re: [ANN] Maven 1.1 Beta 2 Released
> > >
> > > For your first error, can you launch maven with the -e option to see
> which
> > > pom is invalid ?
> > >
> > > For your second error you must re-install the findbugs plugin because
> it
> > > was
> > > certainly deleted during the installation (it doesn't come with
> maven).
> >
> > Also note that you may have some issue with the findbugs plugin and
> Maven
> > 1.1. See http://tinyurl.com/b7ev7
> >
> > [snip]
> > -Vincent
> >
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Fwd: [ANN] Maven 1.1 Beta 2 Released

Posted by emerson cargnin <ec...@gmail.com>.
Hummmm....

I was testing mavenbook with maven 1.0.2, I had to update changelog
plugin in order to succefull build the site.
I used the command:

maven plugin:download
-Dmaven.repo.remote=http://www.ibiblio.org/maven,
http://cvs.apache.org/repository/   -DgroupId=maven
-DartifactId=maven-changelog-plugin   -Dversion=1.7

Gonna test my project to see if now it works :)

thanks
Emerson

On 12/09/05, Vincent Massol <vm...@pivolis.com> wrote:
>
>
> > -----Original Message-----
> > From: Arnaud HERITIER [mailto:aheritier@gmail.com]
> > Sent: lundi 12 septembre 2005 12:16
> > To: Maven Users List; echofloripa.yell@gmail.com
> > Subject: Re: [ANN] Maven 1.1 Beta 2 Released
> >
> > For your first error, can you launch maven with the -e option to see which
> > pom is invalid ?
> >
> > For your second error you must re-install the findbugs plugin because it
> > was
> > certainly deleted during the installation (it doesn't come with maven).
>
> Also note that you may have some issue with the findbugs plugin and Maven
> 1.1. See http://tinyurl.com/b7ev7
>
> [snip]
> -Vincent
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


RE: [ANN] Maven 1.1 Beta 2 Released

Posted by Vincent Massol <vm...@pivolis.com>.

> -----Original Message-----
> From: Arnaud HERITIER [mailto:aheritier@gmail.com]
> Sent: lundi 12 septembre 2005 12:16
> To: Maven Users List; echofloripa.yell@gmail.com
> Subject: Re: [ANN] Maven 1.1 Beta 2 Released
> 
> For your first error, can you launch maven with the -e option to see which
> pom is invalid ?
> 
> For your second error you must re-install the findbugs plugin because it
> was
> certainly deleted during the installation (it doesn't come with maven).

Also note that you may have some issue with the findbugs plugin and Maven
1.1. See http://tinyurl.com/b7ev7

[snip]
-Vincent


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: [ANN] Maven 1.1 Beta 2 Released

Posted by Arnaud HERITIER <ah...@gmail.com>.
For your first error, can you launch maven with the -e option to see which 
pom is invalid ?

For your second error you must re-install the findbugs plugin because it was 
certainly deleted during the installation (it doesn't come with maven).

Arnaud

On 9/12/05, emerson cargnin <ec...@gmail.com> wrote:
> 
> I started to have the following exception after installed beta 2:
> 
> __ __
> | \/ |__ _Apache__ ___
> | |\/| / _` \ V / -_) ' \ ~ intelligent projects ~
> |_| |_\__,_|\_/\___|_||_| v. 1.1-beta-2
> 
> build:start:
> 
> multiproject:projects-init:
> [echo] Gathering project list
> Starting the reactor...
> 
> BUILD FAILED
> File...... C:\Documents and 
> Settings\EmersonC\.maven\cache\maven-multiproject-pl
> ugin-1.4.1\plugin.jelly
> Element... maven:reactor
> Line...... 64
> Column.... -1
> Unknown error reading project
> Total time : 2 seconds
> Finished at : 12 September 2005 10:58:27 BST
> 
> This was when I tried to run multiproject goal, when I try to build a
> subproject directly, the following happens:
> 
> C:\workspace\com.yell.businessobjects>maven site:deploy
> __ __
> | \/ |__ _Apache__ ___
> | |\/| / _` \ V / -_) ' \ ~ intelligent projects ~
> |_| |_\__,_|\_/\___|_||_| v. 1.1-beta-2
> 
> Attempting to download com.yell.java-1.0-SNAPSHOT.jar.
> Artifact /com.yell/jars/com.yell.java-1.0-SNAPSHOT.jar doesn't exist in 
> remote r
> epository, but it exists locally.
> build:start:
> 
> site:deploy:
> Attempting to download fop-0.20.5.jar.
> 1484K downloaded
> Attempting to download batik-1.5-fop-0.20-5.jar.
> 2062K downloaded
> Attempting to download avalon-framework-4.1.5.jar.
> 71K downloaded
> Attempting to download xalan-2.4.1.jar.
> 1006K downloaded
> 
> BUILD FAILED
> File...... C:\Documents and Settings\EmersonC\.maven\cache\maven-
> xdoc-plugin-1.9
> .2\plugin.jelly
> Element... attainGoal
> Line...... 989
> Column.... -1
> No goal [maven-findbugs-plugin:register]
> Total time : 35 seconds
> Finished at : 12 September 2005 11:06:58 BST
> 
> Better to go back to 1.1 beta 1?
> 
> Emerson
> 
> On 12/09/05, Brett Porter <br...@apache.org> wrote:
> > The Apache Maven team is pleased to announce the release of Maven 1.1Beta 2
> >
> > http://maven.apache.org/start/download.html
> >
> > Maven is a project management and project comprehension tool. Maven is
> > based on the concept of a project object model: builds, documentation
> > creation, site publication, and distribution publication are all
> > controlled from the project object model. Maven also provides tools to
> > create source metrics, change logs based directly on source repository,
> > and source cross-references.
> >
> > For a list of changes since 1.1 beta 1, please see JIRA [2].
> >
> > The 1.1 release focuses on the following objectives:
> >
> > * Integration of Maven 2 technologies such as Maven Wagon, Maven SCM and 
> the new model code
> > * Ant 1.6.5 support, including forkmode="once"
> > * Upgrade to later releases of dependencies, in particular Jelly
> > * Significant improvements in memory usage
> > * Improved POM layout
> > * Bugfixes
> >
> > With just a few exceptions [1], Maven 1.1 is backwards compatible with 
> Maven 1.0.
> >
> > *IMPORTANT: * You must ensure that Maven 1.1 is first in your path if 
> you want to have it installed side-by-side with Maven 1.0.2
> >
> > We hope you enjoy using Maven! If you have any questions, please 
> consult:
> >
> > * the FAQ: http://maven.apache.org/faq.html
> > * the maven-user mailing list: http://maven.apache.org/mail-lists.html
> >
> > For news and information, see:
> >
> > * Maven Blogs: http://www.mavenblogs.com/
> >
> > - The Apache Maven Team
> >
> > [1] http://maven.apache.org/reference/backwards-compatibility.html
> > [2] 
> http://jira.codehaus.org/secure/ReleaseNote.jspa?version=10211&styleName=Html&projectId=10030&Create=Create
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
>

Re: [ANN] Maven 1.1 Beta 2 Released

Posted by emerson cargnin <ec...@gmail.com>.
I started to have the following exception after installed beta 2:

 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.1-beta-2

build:start:

multiproject:projects-init:
    [echo] Gathering project list
Starting the reactor...

BUILD FAILED
File...... C:\Documents and Settings\EmersonC\.maven\cache\maven-multiproject-pl
ugin-1.4.1\plugin.jelly
Element... maven:reactor
Line...... 64
Column.... -1
Unknown error reading project
Total time   : 2 seconds
Finished at  : 12 September 2005 10:58:27 BST

This was when I tried to run multiproject goal, when I try to build a
subproject directly, the following happens:

C:\workspace\com.yell.businessobjects>maven site:deploy
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.1-beta-2

Attempting to download com.yell.java-1.0-SNAPSHOT.jar.
Artifact /com.yell/jars/com.yell.java-1.0-SNAPSHOT.jar doesn't exist in remote r
epository, but it exists locally.
build:start:

site:deploy:
Attempting to download fop-0.20.5.jar.
1484K downloaded
Attempting to download batik-1.5-fop-0.20-5.jar.
2062K downloaded
Attempting to download avalon-framework-4.1.5.jar.
71K downloaded
Attempting to download xalan-2.4.1.jar.
1006K downloaded

BUILD FAILED
File...... C:\Documents and Settings\EmersonC\.maven\cache\maven-xdoc-plugin-1.9
.2\plugin.jelly
Element... attainGoal
Line...... 989
Column.... -1
No goal [maven-findbugs-plugin:register]
Total time   : 35 seconds
Finished at  : 12 September 2005 11:06:58 BST

Better to go back to 1.1 beta 1?

Emerson

On 12/09/05, Brett Porter <br...@apache.org> wrote:
> The Apache Maven team is pleased to announce the release of Maven 1.1 Beta 2
> 
> http://maven.apache.org/start/download.html
> 
> Maven is a project management and project comprehension tool. Maven is
> based on the concept of a project object model: builds, documentation
> creation, site publication, and distribution publication are all
> controlled from the project object model. Maven also provides tools to
> create source metrics, change logs based directly on source repository,
> and source cross-references.
> 
> For a list of changes since 1.1 beta 1, please see JIRA [2].
> 
> The 1.1 release focuses on the following objectives:
> 
>    * Integration of Maven 2 technologies such as Maven Wagon, Maven SCM and the new model code
>    * Ant 1.6.5 support, including forkmode="once"
>    * Upgrade to later releases of dependencies, in particular Jelly
>    * Significant improvements in memory usage
>    * Improved POM layout
>    * Bugfixes
> 
> With just a few exceptions [1], Maven 1.1 is backwards compatible with Maven 1.0.
> 
> *IMPORTANT: * You must ensure that Maven 1.1 is first in your path if you want to have it installed side-by-side with Maven 1.0.2
> 
> We hope you enjoy using Maven! If you have any questions, please consult:
> 
>    * the FAQ: http://maven.apache.org/faq.html
>    * the maven-user mailing list: http://maven.apache.org/mail-lists.html
> 
> For news and information, see:
> 
>    * Maven Blogs: http://www.mavenblogs.com/
> 
> - The Apache Maven Team
> 
> [1] http://maven.apache.org/reference/backwards-compatibility.html
> [2] http://jira.codehaus.org/secure/ReleaseNote.jspa?version=10211&styleName=Html&projectId=10030&Create=Create
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org