You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@continuum.apache.org by Christian Edward Gruber <cg...@israfil.net> on 2006/11/09 19:57:07 UTC

Re: svn commit: r473012 - /maven/continuum/trunk/continuum-webapp/pom.xml

Doesn't the plexus-runtime need it too?

Christian.

jmcconnell@apache.org wrote:
> Author: jmcconnell
> Date: Thu Nov  9 10:39:25 2006
> New Revision: 473012
>
> URL: http://svn.apache.org/viewvc?view=rev&rev=473012
> Log:
> added activation dependency, it appears that WorkingCopyAction brings in this dependency so it ought to be marked as such, thanks to graham for noticing this
>
> Modified:
>     maven/continuum/trunk/continuum-webapp/pom.xml
>
> Modified: maven/continuum/trunk/continuum-webapp/pom.xml
> URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/pom.xml?view=diff&rev=473012&r1=473011&r2=473012
> ==============================================================================
> --- maven/continuum/trunk/continuum-webapp/pom.xml (original)
> +++ maven/continuum/trunk/continuum-webapp/pom.xml Thu Nov  9 10:39:25 2006
> @@ -416,5 +416,11 @@
>        <artifactId>commons-lang</artifactId>
>        <version>2.1</version>
>      </dependency>
> +    <dependency>
> +      <groupId>javax.activation</groupId>
> +      <artifactId>activation</artifactId>
> +      <version>1.1</version>
> +      <scope>provided</scope>
> +    </dependency>
>    </dependencies>
>  </project>
>
>
>   


-- 

*christian** gruber + process coach and architect*

*Israfil Consulting Services Corporation*

*email** cgruber@israfil.net + bus 905.640.1119 + mob 416.998.6023*


Re: svn commit: r473012 - /maven/continuum/trunk/continuum-webapp/pom.xml

Posted by Christian Edward Gruber <cg...@israfil.net>.
It needs to be declared in the plexus-runtime project, beside all the
other runtime packaged jars.  I would search in vi for javax and you'll
probably find other ones you can put it beside.  In the mean-time, I
just did this:

Index: continuum-plexus-runtime/pom.xml
===================================================================
--- continuum-plexus-runtime/pom.xml    (revision 466400)
+++ continuum-plexus-runtime/pom.xml    (working copy)
@@ -66,6 +66,12 @@
       <version>1.3.2</version>
       <scope>runtime</scope>
     </dependency>
+    <dependency>
+      <groupId>javax.activation</groupId>
+      <artifactId>activation</artifactId>
+      <version>1.1</version>
+      <scope>runtime</scope>
+    </dependency>
   </dependencies>
   <build>
     <plugins>

----
Cheers, Christian.


Jesse McConnell wrote:
> point me where and I'll add it, but I just did a quick search in
> continuum and saw it referenced in the WorkingCopyAction so threw in
> the in pom
>
> jesse
>
> On 11/9/06, Christian Edward Gruber <cg...@israfil.net> wrote:
>> Doesn't the plexus-runtime need it too?
>>
>> Christian.
>>
>> jmcconnell@apache.org wrote:
>> > Author: jmcconnell
>> > Date: Thu Nov  9 10:39:25 2006
>> > New Revision: 473012
>> >
>> > URL: http://svn.apache.org/viewvc?view=rev&rev=473012
>> > Log:
>> > added activation dependency, it appears that WorkingCopyAction
>> brings in this dependency so it ought to be marked as such, thanks to
>> graham for noticing this
>> >
>> > Modified:
>> >     maven/continuum/trunk/continuum-webapp/pom.xml
>> >
>> > Modified: maven/continuum/trunk/continuum-webapp/pom.xml
>> > URL:
>> http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/pom.xml?view=diff&rev=473012&r1=473011&r2=473012
>>
>> >
>> ==============================================================================
>>
>> > --- maven/continuum/trunk/continuum-webapp/pom.xml (original)
>> > +++ maven/continuum/trunk/continuum-webapp/pom.xml Thu Nov  9
>> 10:39:25 2006
>> > @@ -416,5 +416,11 @@
>> >        <artifactId>commons-lang</artifactId>
>> >        <version>2.1</version>
>> >      </dependency>
>> > +    <dependency>
>> > +      <groupId>javax.activation</groupId>
>> > +      <artifactId>activation</artifactId>
>> > +      <version>1.1</version>
>> > +      <scope>provided</scope>
>> > +    </dependency>
>> >    </dependencies>
>> >  </project>
>> >
>> >
>> >
>>
>>
>> -- 
>>
>> *christian** gruber + process coach and architect*
>>
>> *Israfil Consulting Services Corporation*
>>
>> *email** cgruber@israfil.net + bus 905.640.1119 + mob 416.998.6023*
>>
>>
>>
>
>


-- 

*christian** gruber + process coach and architect*

*Israfil Consulting Services Corporation*

*email** cgruber@israfil.net + bus 905.640.1119 + mob 416.998.6023*


Re: svn commit: r473012 - /maven/continuum/trunk/continuum-webapp/pom.xml

Posted by Jesse McConnell <je...@gmail.com>.
point me where and I'll add it, but I just did a quick search in
continuum and saw it referenced in the WorkingCopyAction so threw in
the in pom

jesse

On 11/9/06, Christian Edward Gruber <cg...@israfil.net> wrote:
> Doesn't the plexus-runtime need it too?
>
> Christian.
>
> jmcconnell@apache.org wrote:
> > Author: jmcconnell
> > Date: Thu Nov  9 10:39:25 2006
> > New Revision: 473012
> >
> > URL: http://svn.apache.org/viewvc?view=rev&rev=473012
> > Log:
> > added activation dependency, it appears that WorkingCopyAction brings in this dependency so it ought to be marked as such, thanks to graham for noticing this
> >
> > Modified:
> >     maven/continuum/trunk/continuum-webapp/pom.xml
> >
> > Modified: maven/continuum/trunk/continuum-webapp/pom.xml
> > URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp/pom.xml?view=diff&rev=473012&r1=473011&r2=473012
> > ==============================================================================
> > --- maven/continuum/trunk/continuum-webapp/pom.xml (original)
> > +++ maven/continuum/trunk/continuum-webapp/pom.xml Thu Nov  9 10:39:25 2006
> > @@ -416,5 +416,11 @@
> >        <artifactId>commons-lang</artifactId>
> >        <version>2.1</version>
> >      </dependency>
> > +    <dependency>
> > +      <groupId>javax.activation</groupId>
> > +      <artifactId>activation</artifactId>
> > +      <version>1.1</version>
> > +      <scope>provided</scope>
> > +    </dependency>
> >    </dependencies>
> >  </project>
> >
> >
> >
>
>
> --
>
> *christian** gruber + process coach and architect*
>
> *Israfil Consulting Services Corporation*
>
> *email** cgruber@israfil.net + bus 905.640.1119 + mob 416.998.6023*
>
>
>


-- 
jesse mcconnell
jesse.mcconnell@gmail.com