You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tuscany.apache.org by Jean-Sebastien Delfino <js...@apache.org> on 2007/08/09 07:43:13 UTC

New dependencies on binding-sca? was: svn commit: r563787 - in /incubator/tuscany/java/sca/modules: binding-ejb/pom.xml core-spring/pom.xml host-embedded/pom.xml

I'm not sure what required these dependency changes:

- binding-ejb now depending on host-embedded?
- host-embedded now depending on binding-sca-xml?

Could you please help me understand? Thanks.


slaws@apache.org wrote:
> Author: slaws
> Date: Wed Aug  8 01:29:54 2007
> New Revision: 563787
>
> URL: http://svn.apache.org/viewvc?view=rev&rev=563787
> Log:
> TUSCANY-1512
> Correct some binding-sca dependencies that I missed on the last checkin
>
> Modified:
>     incubator/tuscany/java/sca/modules/binding-ejb/pom.xml
>     incubator/tuscany/java/sca/modules/core-spring/pom.xml
>     incubator/tuscany/java/sca/modules/host-embedded/pom.xml
>
> Modified: incubator/tuscany/java/sca/modules/binding-ejb/pom.xml
> URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/binding-ejb/pom.xml?view=diff&rev=563787&r1=563786&r2=563787
> ==============================================================================
> --- incubator/tuscany/java/sca/modules/binding-ejb/pom.xml (original)
> +++ incubator/tuscany/java/sca/modules/binding-ejb/pom.xml Wed Aug  8 01:29:54 2007
> @@ -38,6 +38,12 @@
>              <artifactId>tuscany-extension-helper</artifactId>
>              <version>1.0-incubating-SNAPSHOT</version>
>          </dependency>
> +        
> +        <dependency>
> +            <groupId>org.apache.tuscany.sca</groupId>
> +            <artifactId>tuscany-host-embedded</artifactId>
> +            <version>1.0-incubating-SNAPSHOT</version>
> +        </dependency>        
>  
>          <dependency>
>              <groupId>org.apache.geronimo.specs</groupId>
>
> Modified: incubator/tuscany/java/sca/modules/core-spring/pom.xml
> URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/core-spring/pom.xml?view=diff&rev=563787&r1=563786&r2=563787
> ==============================================================================
> --- incubator/tuscany/java/sca/modules/core-spring/pom.xml (original)
> +++ incubator/tuscany/java/sca/modules/core-spring/pom.xml Wed Aug  8 01:29:54 2007
> @@ -100,8 +100,8 @@
>              <groupId>org.apache.tuscany.sca</groupId>
>              <artifactId>tuscany-binding-sca</artifactId>
>              <version>1.0-incubating-SNAPSHOT</version>
> -            <scope>test</scope>
> -        </dependency>        
> +        </dependency>  
> +   
>      </dependencies>
>  
>  </project>
>
> Modified: incubator/tuscany/java/sca/modules/host-embedded/pom.xml
> URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/host-embedded/pom.xml?view=diff&rev=563787&r1=563786&r2=563787
> ==============================================================================
> --- incubator/tuscany/java/sca/modules/host-embedded/pom.xml (original)
> +++ incubator/tuscany/java/sca/modules/host-embedded/pom.xml Wed Aug  8 01:29:54 2007
> @@ -45,14 +45,12 @@
>              <groupId>org.apache.tuscany.sca</groupId>
>              <artifactId>tuscany-binding-sca</artifactId>
>              <version>1.0-incubating-SNAPSHOT</version>
> -            <scope>runtime</scope>
>          </dependency>
>          
>          <dependency>
>              <groupId>org.apache.tuscany.sca</groupId>
>              <artifactId>tuscany-binding-sca-xml</artifactId>
>              <version>1.0-incubating-SNAPSHOT</version>
> -            <scope>runtime</scope>
>          </dependency>        
>  
>          <dependency>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
> For additional commands, e-mail: tuscany-commits-help@ws.apache.org
>
>
>   


-- 
Jean-Sebastien


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


Re: New dependencies on binding-sca? was: svn commit: r563787 - in /incubator/tuscany/java/sca/modules: binding-ejb/pom.xml core-spring/pom.xml host-embedded/pom.xml

Posted by Simon Laws <si...@googlemail.com>.
On 8/9/07, Jean-Sebastien Delfino <js...@apache.org> wrote:
>
> Simon Laws wrote:
> > The binding-ejb one was a mistake
> > host-embedded/ReallySmallRuntimeBuilder creates a SCABindingProcessor
> >
> > I'll go fix the first one and test against the latest code
> >
> > Thanks
> >
> >
>
> Ah OK. If you're talking about this:
>
>         SCABindingProcessor scaBindingProcessor =
>             new SCABindingProcessor(assemblyFactory, policyFactory,
> scaBindingFactory);
>         StAXArtifactProcessorExtensionPoint processors =
>
> registry.getExtensionPoint(StAXArtifactProcessorExtensionPoint.class);
>         processors.addArtifactProcessor(scaBindingProcessor);
>
> then, as part of factoring the SCA binding out, this initialization
> should move the binding-sca module, right?
>
> --
> Jean-Sebastien
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: tuscany-dev-help@ws.apache.org
>
> Actually Sebastien, you are right (no change there ;-). Now that the
binding-sca-xml module is loaded via the services mechanism this manual
registration is not required. I'll go remove it.

Thanks for spotting that

Smon

Re: New dependencies on binding-sca? was: svn commit: r563787 - in /incubator/tuscany/java/sca/modules: binding-ejb/pom.xml core-spring/pom.xml host-embedded/pom.xml

Posted by Jean-Sebastien Delfino <js...@apache.org>.
Simon Laws wrote:
> The binding-ejb one was a mistake
> host-embedded/ReallySmallRuntimeBuilder creates a SCABindingProcessor
>
> I'll go fix the first one and test against the latest code
>
> Thanks
>
>   

Ah OK. If you're talking about this:

        SCABindingProcessor scaBindingProcessor =
            new SCABindingProcessor(assemblyFactory, policyFactory, 
scaBindingFactory);
        StAXArtifactProcessorExtensionPoint processors =
            
registry.getExtensionPoint(StAXArtifactProcessorExtensionPoint.class);
        processors.addArtifactProcessor(scaBindingProcessor);

then, as part of factoring the SCA binding out, this initialization 
should move the binding-sca module, right?

-- 
Jean-Sebastien


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


Re: New dependencies on binding-sca? was: svn commit: r563787 - in /incubator/tuscany/java/sca/modules: binding-ejb/pom.xml core-spring/pom.xml host-embedded/pom.xml

Posted by Simon Laws <si...@googlemail.com>.
The binding-ejb one was a mistake
host-embedded/ReallySmallRuntimeBuilder creates a SCABindingProcessor

I'll go fix the first one and test against the latest code

Thanks

Simon

On 8/9/07, Jean-Sebastien Delfino <js...@apache.org> wrote:
>
> I'm not sure what required these dependency changes:
>
> - binding-ejb now depending on host-embedded?
> - host-embedded now depending on binding-sca-xml?
>
> Could you please help me understand? Thanks.
>
>
> slaws@apache.org wrote:
> > Author: slaws
> > Date: Wed Aug  8 01:29:54 2007
> > New Revision: 563787
> >
> > URL: http://svn.apache.org/viewvc?view=rev&rev=563787
> > Log:
> > TUSCANY-1512
> > Correct some binding-sca dependencies that I missed on the last checkin
> >
> > Modified:
> >     incubator/tuscany/java/sca/modules/binding-ejb/pom.xml
> >     incubator/tuscany/java/sca/modules/core-spring/pom.xml
> >     incubator/tuscany/java/sca/modules/host-embedded/pom.xml
> >
> > Modified: incubator/tuscany/java/sca/modules/binding-ejb/pom.xml
> > URL:
> http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/binding-ejb/pom.xml?view=diff&rev=563787&r1=563786&r2=563787
> >
> ==============================================================================
> > --- incubator/tuscany/java/sca/modules/binding-ejb/pom.xml (original)
> > +++ incubator/tuscany/java/sca/modules/binding-ejb/pom.xml Wed Aug  8
> 01:29:54 2007
> > @@ -38,6 +38,12 @@
> >              <artifactId>tuscany-extension-helper</artifactId>
> >              <version>1.0-incubating-SNAPSHOT</version>
> >          </dependency>
> > +
> > +        <dependency>
> > +            <groupId>org.apache.tuscany.sca</groupId>
> > +            <artifactId>tuscany-host-embedded</artifactId>
> > +            <version>1.0-incubating-SNAPSHOT</version>
> > +        </dependency>
> >
> >          <dependency>
> >              <groupId>org.apache.geronimo.specs</groupId>
> >
> > Modified: incubator/tuscany/java/sca/modules/core-spring/pom.xml
> > URL:
> http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/core-spring/pom.xml?view=diff&rev=563787&r1=563786&r2=563787
> >
> ==============================================================================
> > --- incubator/tuscany/java/sca/modules/core-spring/pom.xml (original)
> > +++ incubator/tuscany/java/sca/modules/core-spring/pom.xml Wed Aug  8
> 01:29:54 2007
> > @@ -100,8 +100,8 @@
> >              <groupId>org.apache.tuscany.sca</groupId>
> >              <artifactId>tuscany-binding-sca</artifactId>
> >              <version>1.0-incubating-SNAPSHOT</version>
> > -            <scope>test</scope>
> > -        </dependency>
> > +        </dependency>
> > +
> >      </dependencies>
> >
> >  </project>
> >
> > Modified: incubator/tuscany/java/sca/modules/host-embedded/pom.xml
> > URL:
> http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/host-embedded/pom.xml?view=diff&rev=563787&r1=563786&r2=563787
> >
> ==============================================================================
> > --- incubator/tuscany/java/sca/modules/host-embedded/pom.xml (original)
> > +++ incubator/tuscany/java/sca/modules/host-embedded/pom.xml Wed Aug  8
> 01:29:54 2007
> > @@ -45,14 +45,12 @@
> >              <groupId>org.apache.tuscany.sca</groupId>
> >              <artifactId>tuscany-binding-sca</artifactId>
> >              <version>1.0-incubating-SNAPSHOT</version>
> > -            <scope>runtime</scope>
> >          </dependency>
> >
> >          <dependency>
> >              <groupId>org.apache.tuscany.sca</groupId>
> >              <artifactId>tuscany-binding-sca-xml</artifactId>
> >              <version>1.0-incubating-SNAPSHOT</version>
> > -            <scope>runtime</scope>
> >          </dependency>
> >
> >          <dependency>
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
> > For additional commands, e-mail: tuscany-commits-help@ws.apache.org
> >
> >
> >
>
>
> --
> Jean-Sebastien
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: tuscany-dev-help@ws.apache.org
>
>