Aidan Skinner wrote:
On Tue, Mar 24, 2009 at 1:42 PM, Bryan Kearney <[email protected]> wrote:

I know the build is ant basd.. but do you happen to keep a maven repo of the
jar files anywhere?

No. Producing mavenable artifacts is something I really want to do for
the java client at least. I've looked into using Ivy to do our dep
management to facilitate this but haven't completed that work yet - it
looks like we might need to write a resolver to use a properly flat
directory structure.

- Aidan
FWIW I loaded some of the packages into Aritfactory, and here are the pom dependencies to run a client within a JBoss server:

        <dependencies>
                <dependency>
                        <groupId>org.apache.qpid</groupId>
                        <artifactId>qpid-common</artifactId>
                        <version>0.5</version>
            <type>jar</type>                        
                </dependency>
                <dependency>
                        <groupId>org.apache.qpid</groupId>
                        <artifactId>qpid-client</artifactId>
                        <version>0.5</version>
            <type>jar</type>                        
                </dependency>
                <dependency>
                    <groupId>org.apache.mina</groupId>
                    <artifactId>mina-core</artifactId>
                    <version>1.0.1</version>
                </dependency>             
                <dependency>
                        <groupId>javax.jms</groupId>
                        <artifactId>jms</artifactId>
                        <version>1.1</version>
            <scope>provided</scope>                 
                </dependency>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging-api</artifactId>
            <version>1.1</version>
            <scope>provided</scope>
        </dependency>             
        </dependencies>

-- bk


---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:[email protected]

Reply via email to