Marian, Radu wrote:
Hi Jean-Seastien,

What do you mean by "- process: Business processes and Xquery"?

Could not find any artifacts such as bpel and xquery.

...
The process distro pulls the base distro, the webservice distro, the bpel and xquery implementation types. This is done in process/pom.xml [1] like this:

    <dependencies>

        <!-- Base distribution -->
        <dependency>
            <groupId>org.apache.tuscany.sca</groupId>
            <artifactId>tuscany-distribution-base</artifactId>
            <type>pom</type>
            <version>1.4-SNAPSHOT</version>
        </dependency>

        <!-- Web Service distribution -->
        <dependency>
            <groupId>org.apache.tuscany.sca</groupId>
            <artifactId>tuscany-distribution-webservice</artifactId>
            <type>pom</type>
            <version>1.4-SNAPSHOT</version>
        </dependency>

        <!-- Implementations -->
        <dependency>
            <groupId>org.apache.tuscany.sca</groupId>
            <artifactId>tuscany-implementation-bpel-ode</artifactId>
            <version>1.4-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>org.apache.tuscany.sca</groupId>
            <artifactId>tuscany-implementation-xquery</artifactId>
            <version>1.4-SNAPSHOT</version>
        </dependency>
    </dependencies>

The build produces a distro containing the necessary modules and 3rd party dependencies for use in environments where you need:
- core SCA
- java components
- bpel components
- xquery components
- web services

Here's the list of JARs in the process distro [2] (big as it includes the bpel and xquery runtimes and their dependencies) which you can compare to the list of JARs in the base distro [3] (much smaller).

Hope this helps.

[1] http://svn.eu.apache.org/repos/asf/tuscany/sandbox/sebastien/distribution/process/pom.xml [2] http://people.apache.org/~jsdelfino/tuscany/test-distros/process-jars.txt
[3] http://people.apache.org/~jsdelfino/tuscany/test-distros/base-jars.txt

--
Jean-Sebastien

Reply via email to