You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@qpid.apache.org by Bryan Kearney <bk...@redhat.com> on 2009/03/24 14:42:09 UTC

maven repo for qpid

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

-- bk

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:users-subscribe@qpid.apache.org


Re: maven repo for qpid

Posted by Aidan Skinner <ai...@gmail.com>.
On Wed, Mar 25, 2009 at 11:55 AM, Bryan Kearney <bk...@redhat.com> wrote:

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

Nice! Thanks! It's probably a bit late to get these into 0.5 but
that's dead useful. Hadn't come across Artifactory before. :)

- Aidan
-- 
Apache Qpid - World Domination through Advanced Message Queueing
http://qpid.apache.org

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:users-subscribe@qpid.apache.org


Re: maven repo for qpid

Posted by Bryan Kearney <bk...@redhat.com>.
Aidan Skinner wrote:
> On Tue, Mar 24, 2009 at 1:42 PM, Bryan Kearney <bk...@redhat.com> 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:users-subscribe@qpid.apache.org


Re: maven repo for qpid

Posted by Aidan Skinner <ai...@gmail.com>.
On Tue, Mar 24, 2009 at 1:42 PM, Bryan Kearney <bk...@redhat.com> 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
-- 
Apache Qpid - World Domination through Advanced Message Queueing
http://qpid.apache.org

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:users-subscribe@qpid.apache.org