1 |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 |
<modelVersion>4.0.0</modelVersion> |
4 |
<groupId>hippo</groupId> |
5 |
<artifactId>jmsbridge</artifactId> |
6 |
<name>Hippo JMS Bridging and Wrapper library</name> |
7 |
<version>1.01.04</version> |
8 |
<description>Library which transparently wraps around another JMS provider and allows to overcome issues with the underlying JMS provider.</description> |
9 |
<organization> |
10 |
<name>Hippo B.V., the Netherlands</name> |
11 |
<url>http://www.hippo.nl/</url> |
12 |
</organization> |
13 |
<inceptionYear>2007</inceptionYear> |
14 |
<mailingLists> |
15 |
<name/> |
16 |
<subscribe/> |
17 |
<unsubscribe/> |
18 |
<post/> |
19 |
<archive/> |
20 |
</mailingLists> |
21 |
<developers> |
22 |
<developer> |
23 |
<id>berry</id> |
24 |
<name>(Berry) A.W. van Halderen</name> |
25 |
<email>b.vanhalderen@hippo.nl</email> |
26 |
<url>http://www.halderen.net/</url> |
27 |
<organization>Hippo B.V., the Netherlands</organization> |
28 |
<organizationUrl>http://www.hippo.nl/</organizationUrl> |
29 |
<timezone>GMT+0100</timezone> |
30 |
</developer> |
31 |
</developers> |
32 |
<contributors></contributors> |
33 |
<licenses> |
34 |
<name>copyright reserved</name> |
35 |
<url>http://www.hippo.nl/</url> |
36 |
<distribution>manual</distribution> |
37 |
<comments>(C) Copyrights reserved Hippo B.V., the Netherlands</comments> |
38 |
</licenses> |
39 |
<dependencies> |
40 |
<dependency> |
41 |
<groupId>commons-logging</groupId> |
42 |
<artifactId>commons-logging</artifactId> |
43 |
<version>(1.0.4,]</version> |
44 |
<scope>provided</scope> |
45 |
</dependency> |
46 |
<dependency> |
47 |
<groupId>geronimo-spec</groupId> |
48 |
<artifactId>geronimo-spec-jms</artifactId> |
49 |
<version>1.0-M1</version> |
50 |
<scope>provided</scope> |
51 |
</dependency> |
52 |
</dependencies> |
53 |
<build> |
54 |
<plugins> |
55 |
<plugin> |
56 |
<groupId>org.apache.maven.plugins</groupId> |
57 |
<artifactId>maven-compiler-plugin</artifactId> |
58 |
<configuration> |
59 |
<source>1.4</source> |
60 |
<target>1.4</target> |
61 |
</configuration> |
62 |
</plugin> |
63 |
</plugins> |
64 |
<sourceDirectory>src/main/java</sourceDirectory> |
65 |
<resources/> |
66 |
<defaultGoal>package</defaultGoal> |
67 |
</build> |
68 |
</project> |