cloudtrends / soi-toolkit

Automatically exported from code.google.com/p/soi-toolkit
1 stars 0 forks source link

Remove the restlet transport #294

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
soi-toolkit is not using the restlet transport in any generator and is seems 
that the restlet transport is no longer actively maintained.

Original issue reported on code.google.com by magnus.l...@gmail.com on 7 Sep 2012 at 9:23

GoogleCodeExporter commented 9 years ago
It the restlet transport is required in the future it can be added by adding 
the following to the projects pom-xml - file:

    <properties>
        <mule-transport-restlet.version>1.3</mule-transport-restlet.version>
    </properties>

        <dependency>
            <!-- NOTE: This is a muleforge transport so watch out for dependencies here to old versions of Mule, need to be excluded as they are added in new versions!!! -->
            <groupId>org.mule.transports</groupId>
            <artifactId>mule-transport-restlet</artifactId>
            <version>${mule-transport-restlet.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>org.safehaus.jug</groupId>
                    <artifactId>jug</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.mule</groupId>
                    <artifactId>mule-core</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.mule.transports</groupId>
                    <artifactId>mule-transport-http</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.mule.transports</groupId>
                    <artifactId>mule-transport-vm</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.mule.modules</groupId>
                    <artifactId>mule-module-client</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.mule.tests</groupId>
                    <artifactId>mule-tests-functional</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.mule.modules</groupId>
                    <artifactId>mule-module-spring-config</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

Original comment by magnus.l...@gmail.com on 7 Sep 2012 at 9:31

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r1716.

Original comment by magnus.l...@gmail.com on 7 Sep 2012 at 10:09