You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by fg...@apache.org on 2006/08/15 17:52:39 UTC

svn commit: r431626 - /maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml

Author: fgiust
Date: Tue Aug 15 08:52:38 2006
New Revision: 431626

URL: http://svn.apache.org/viewvc?rev=431626&view=rev
Log:
dependencies report doesn't work properly on maven 2.0.4 due to wagon version (missing Wagon.resourceExists(Ljava/lang/String;)Z)

Modified:
    maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml

Modified: maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml?rev=431626&r1=431625&r2=431626&view=diff
==============================================================================
--- maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml Tue Aug 15 08:52:38 2006
@@ -39,7 +39,7 @@
     </contributor>
   </contributors>
   <prerequisites>
-    <maven>2.0.4</maven>
+    <maven>2.0.5-SNAPSHOT</maven>
   </prerequisites>
   <build>
     <plugins>



Re: svn commit: r431626 - /maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml

Posted by Brett Porter <br...@apache.org>.
a) is what is on the table now that I said wasn't acceptable.

b) sounds like a good idea

So should we create a dependency report plugin and roll the MPIR one 
back to the previous version?



On 18/8/06 4:17 AM, Carlos Sanchez wrote:
> i like 2, let's split the reports in more manageable chunks
> 
> On 8/17/06, Joakim Erdfelt <jo...@erdfelt.com> wrote:
>> Two other choices / possibilities.
>>
>> a) Get wagon-2.0-beta2 into maven 2.0.5.
>>
>> b) Rip out the dependency location section into a seperate
>> maven-advanced-dependencies-report-plugin (madrp?). The dependencies
>> report in MPIR is starting to get out of hand anyway.  I also have some
>> dependencies interrelation checks due (2 deps with same class present,
>> transitive dep being overridden, overridden dep is identical version to
>> transitive dep by version and/or bytecode, etc...)
>>
>> - Joakim
>>
>> Fabrizio Giustina wrote:
>> > On 8/16/06, Brett Porter <br...@apache.org> wrote:
>> >> This seems like a bad thing.
>> >> Can we work around it?
>> >
>> > The dependency on wagon API 2.0-beta2 was introduced by the code for
>> > the new dependency location detail (disabled by default):
>> > http://jira.codehaus.org/browse/MPIR-55
>> >
>> > there is a single method call that is not available in the wagon
>> > version used in maven 2.0.4,  wagon.resourceExists() (see WAGON-58 )
>> > and that can't be emulated using wagon 1.0-alpha-6.
>> >
>> > If we want to keep it compatable with maven 2.0.4 we have to remove
>> > the dependency location section. Another pretty dirty solution could
>> > be to automatically disable the dependency location section if the
>> > wagon found in the classpath don't implement the resourceExists()
>> > method.
>> > Thoughts?
>> >
>> > fabrizio
>> >
>> >
>> >
>> >>
>> >> - Brett
>> >>
>> >> On 16/08/2006 1:52 AM, fgiust@apache.org wrote:
>> >> > Author: fgiust
>> >> > Date: Tue Aug 15 08:52:38 2006
>> >> > New Revision: 431626
>> >> >
>> >> > URL: http://svn.apache.org/viewvc?rev=431626&view=rev
>> >> > Log:
>> >> > dependencies report doesn't work properly on maven 2.0.4 due to
>> >> wagon version (missing Wagon.resourceExists(Ljava/lang/String;)Z)
>> >> >
>> >> > Modified:
>> >> >     maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
>> >> >
>> >> > Modified:
>> >> maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
>> >> > URL:
>> >> 
>> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml?rev=431626&r1=431625&r2=431626&view=diff 
>>
>> >>
>> >> >
>> >> 
>> ============================================================================== 
>>
>> >>
>> >> > --- maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
>> >> (original)
>> >> > +++ maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
>> >> Tue Aug 15 08:52:38 2006
>> >> > @@ -39,7 +39,7 @@
>> >> >      </contributor>
>> >> >    </contributors>
>> >> >    <prerequisites>
>> >> > -    <maven>2.0.4</maven>
>> >> > +    <maven>2.0.5-SNAPSHOT</maven>
>> >> >    </prerequisites>
>> >> >    <build>
>> >> >      <plugins>
>> >> >
>> >> >
>> >>
>> >>
>> >> --
>> >> Apache Maven - http://maven.apache.org/
>> >> Better Builds with Maven - http://library.mergere.com/
>> >>
>> >> ---------------------------------------------------------------------
>> >> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
>> >> For additional commands, e-mail: dev-help@maven.apache.org
>> >>
>> >>
>> >
>> > ---------------------------------------------------------------------
>> > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
>> > For additional commands, e-mail: dev-help@maven.apache.org
>> >
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
>> For additional commands, e-mail: dev-help@maven.apache.org
>>
>>
> 
> 


-- 
Apache Maven - http://maven.apache.org/
Better Builds with Maven - http://library.mergere.com/

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


Re: svn commit: r431626 - /maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml

Posted by Carlos Sanchez <ca...@apache.org>.
i like 2, let's split the reports in more manageable chunks

On 8/17/06, Joakim Erdfelt <jo...@erdfelt.com> wrote:
> Two other choices / possibilities.
>
> a) Get wagon-2.0-beta2 into maven 2.0.5.
>
> b) Rip out the dependency location section into a seperate
> maven-advanced-dependencies-report-plugin (madrp?). The dependencies
> report in MPIR is starting to get out of hand anyway.  I also have some
> dependencies interrelation checks due (2 deps with same class present,
> transitive dep being overridden, overridden dep is identical version to
> transitive dep by version and/or bytecode, etc...)
>
> - Joakim
>
> Fabrizio Giustina wrote:
> > On 8/16/06, Brett Porter <br...@apache.org> wrote:
> >> This seems like a bad thing.
> >> Can we work around it?
> >
> > The dependency on wagon API 2.0-beta2 was introduced by the code for
> > the new dependency location detail (disabled by default):
> > http://jira.codehaus.org/browse/MPIR-55
> >
> > there is a single method call that is not available in the wagon
> > version used in maven 2.0.4,  wagon.resourceExists() (see WAGON-58 )
> > and that can't be emulated using wagon 1.0-alpha-6.
> >
> > If we want to keep it compatable with maven 2.0.4 we have to remove
> > the dependency location section. Another pretty dirty solution could
> > be to automatically disable the dependency location section if the
> > wagon found in the classpath don't implement the resourceExists()
> > method.
> > Thoughts?
> >
> > fabrizio
> >
> >
> >
> >>
> >> - Brett
> >>
> >> On 16/08/2006 1:52 AM, fgiust@apache.org wrote:
> >> > Author: fgiust
> >> > Date: Tue Aug 15 08:52:38 2006
> >> > New Revision: 431626
> >> >
> >> > URL: http://svn.apache.org/viewvc?rev=431626&view=rev
> >> > Log:
> >> > dependencies report doesn't work properly on maven 2.0.4 due to
> >> wagon version (missing Wagon.resourceExists(Ljava/lang/String;)Z)
> >> >
> >> > Modified:
> >> >     maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
> >> >
> >> > Modified:
> >> maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
> >> > URL:
> >> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml?rev=431626&r1=431625&r2=431626&view=diff
> >>
> >> >
> >> ==============================================================================
> >>
> >> > --- maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
> >> (original)
> >> > +++ maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
> >> Tue Aug 15 08:52:38 2006
> >> > @@ -39,7 +39,7 @@
> >> >      </contributor>
> >> >    </contributors>
> >> >    <prerequisites>
> >> > -    <maven>2.0.4</maven>
> >> > +    <maven>2.0.5-SNAPSHOT</maven>
> >> >    </prerequisites>
> >> >    <build>
> >> >      <plugins>
> >> >
> >> >
> >>
> >>
> >> --
> >> Apache Maven - http://maven.apache.org/
> >> Better Builds with Maven - http://library.mergere.com/
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> >> For additional commands, e-mail: dev-help@maven.apache.org
> >>
> >>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> > For additional commands, e-mail: dev-help@maven.apache.org
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
>
>


-- 
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
                             -- The Princess Bride

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


Re: svn commit: r431626 - /maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml

Posted by Joakim Erdfelt <jo...@erdfelt.com>.
Two other choices / possibilities.

a) Get wagon-2.0-beta2 into maven 2.0.5.

b) Rip out the dependency location section into a seperate 
maven-advanced-dependencies-report-plugin (madrp?). The dependencies 
report in MPIR is starting to get out of hand anyway.  I also have some 
dependencies interrelation checks due (2 deps with same class present, 
transitive dep being overridden, overridden dep is identical version to 
transitive dep by version and/or bytecode, etc...)

- Joakim

Fabrizio Giustina wrote:
> On 8/16/06, Brett Porter <br...@apache.org> wrote:
>> This seems like a bad thing.
>> Can we work around it?
>
> The dependency on wagon API 2.0-beta2 was introduced by the code for
> the new dependency location detail (disabled by default):
> http://jira.codehaus.org/browse/MPIR-55
>
> there is a single method call that is not available in the wagon
> version used in maven 2.0.4,  wagon.resourceExists() (see WAGON-58 )
> and that can't be emulated using wagon 1.0-alpha-6.
>
> If we want to keep it compatable with maven 2.0.4 we have to remove
> the dependency location section. Another pretty dirty solution could
> be to automatically disable the dependency location section if the
> wagon found in the classpath don't implement the resourceExists()
> method.
> Thoughts?
>
> fabrizio
>
>
>
>>
>> - Brett
>>
>> On 16/08/2006 1:52 AM, fgiust@apache.org wrote:
>> > Author: fgiust
>> > Date: Tue Aug 15 08:52:38 2006
>> > New Revision: 431626
>> >
>> > URL: http://svn.apache.org/viewvc?rev=431626&view=rev
>> > Log:
>> > dependencies report doesn't work properly on maven 2.0.4 due to 
>> wagon version (missing Wagon.resourceExists(Ljava/lang/String;)Z)
>> >
>> > Modified:
>> >     maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
>> >
>> > Modified: 
>> maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
>> > URL: 
>> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml?rev=431626&r1=431625&r2=431626&view=diff 
>>
>> > 
>> ============================================================================== 
>>
>> > --- maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml 
>> (original)
>> > +++ maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml 
>> Tue Aug 15 08:52:38 2006
>> > @@ -39,7 +39,7 @@
>> >      </contributor>
>> >    </contributors>
>> >    <prerequisites>
>> > -    <maven>2.0.4</maven>
>> > +    <maven>2.0.5-SNAPSHOT</maven>
>> >    </prerequisites>
>> >    <build>
>> >      <plugins>
>> >
>> >
>>
>>
>> -- 
>> Apache Maven - http://maven.apache.org/
>> Better Builds with Maven - http://library.mergere.com/
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
>> For additional commands, e-mail: dev-help@maven.apache.org
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
>


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


Re: svn commit: r431626 - /maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml

Posted by Fabrizio Giustina <fg...@apache.org>.
On 8/16/06, Brett Porter <br...@apache.org> wrote:
> This seems like a bad thing.
> Can we work around it?

The dependency on wagon API 2.0-beta2 was introduced by the code for
the new dependency location detail (disabled by default):
http://jira.codehaus.org/browse/MPIR-55

there is a single method call that is not available in the wagon
version used in maven 2.0.4,  wagon.resourceExists() (see WAGON-58 )
and that can't be emulated using wagon 1.0-alpha-6.

If we want to keep it compatable with maven 2.0.4 we have to remove
the dependency location section. Another pretty dirty solution could
be to automatically disable the dependency location section if the
wagon found in the classpath don't implement the resourceExists()
method.
Thoughts?

fabrizio



>
> - Brett
>
> On 16/08/2006 1:52 AM, fgiust@apache.org wrote:
> > Author: fgiust
> > Date: Tue Aug 15 08:52:38 2006
> > New Revision: 431626
> >
> > URL: http://svn.apache.org/viewvc?rev=431626&view=rev
> > Log:
> > dependencies report doesn't work properly on maven 2.0.4 due to wagon version (missing Wagon.resourceExists(Ljava/lang/String;)Z)
> >
> > Modified:
> >     maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
> >
> > Modified: maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
> > URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml?rev=431626&r1=431625&r2=431626&view=diff
> > ==============================================================================
> > --- maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml (original)
> > +++ maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml Tue Aug 15 08:52:38 2006
> > @@ -39,7 +39,7 @@
> >      </contributor>
> >    </contributors>
> >    <prerequisites>
> > -    <maven>2.0.4</maven>
> > +    <maven>2.0.5-SNAPSHOT</maven>
> >    </prerequisites>
> >    <build>
> >      <plugins>
> >
> >
>
>
> --
> Apache Maven - http://maven.apache.org/
> Better Builds with Maven - http://library.mergere.com/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
>
>

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


Re: svn commit: r431626 - /maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml

Posted by Brett Porter <br...@apache.org>.
This seems like a bad thing.

Can we work around it?

- Brett

On 16/08/2006 1:52 AM, fgiust@apache.org wrote:
> Author: fgiust
> Date: Tue Aug 15 08:52:38 2006
> New Revision: 431626
> 
> URL: http://svn.apache.org/viewvc?rev=431626&view=rev
> Log:
> dependencies report doesn't work properly on maven 2.0.4 due to wagon version (missing Wagon.resourceExists(Ljava/lang/String;)Z)
> 
> Modified:
>     maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
> 
> Modified: maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
> URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml?rev=431626&r1=431625&r2=431626&view=diff
> ==============================================================================
> --- maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml (original)
> +++ maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml Tue Aug 15 08:52:38 2006
> @@ -39,7 +39,7 @@
>      </contributor>
>    </contributors>
>    <prerequisites>
> -    <maven>2.0.4</maven>
> +    <maven>2.0.5-SNAPSHOT</maven>
>    </prerequisites>
>    <build>
>      <plugins>
> 
> 


-- 
Apache Maven - http://maven.apache.org/
Better Builds with Maven - http://library.mergere.com/

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