]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.activemq/pom.xml
Modular distributions
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.activemq / pom.xml
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 <parent>
5 <groupId>org.argeo.slc</groupId>
6 <artifactId>runtime</artifactId>
7 <version>0.11.4-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.support.activemq</artifactId>
12 <name>Argeo SLC Support ActiveMQ</name>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-source-plugin</artifactId>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-surefire-plugin</artifactId>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-jar-plugin</artifactId>
30 </plugin>
31 <plugin>
32 <groupId>org.apache.felix</groupId>
33 <artifactId>maven-bundle-plugin</artifactId>
34 <version>${version.maven-bundle-plugin}</version>
35 <configuration>
36 <instructions>
37 <Export-Package>
38 org.argeo.slc.jms.*,org.argeo.slc.activemq
39 </Export-Package>
40 </instructions>
41 </configuration>
42 </plugin>
43 </plugins>
44 </build>
45 <dependencies>
46 <!-- SLC -->
47 <dependency>
48 <groupId>org.argeo.slc.runtime</groupId>
49 <artifactId>org.argeo.slc.core</artifactId>
50 </dependency>
51
52 <!-- Spring -->
53 <dependency>
54 <groupId>org.springframework</groupId>
55 <artifactId>org.springframework.jms</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.springframework.ws</groupId>
59 <artifactId>org.springframework.oxm</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>org.springframework</groupId>
63 <artifactId>org.springframework.transaction</artifactId>
64 </dependency>
65
66 <!-- JMS -->
67 <dependency>
68 <groupId>javax.jms</groupId>
69 <artifactId>com.springsource.javax.jms</artifactId>
70 </dependency>
71
72 <!-- ActiveMQ -->
73 <dependency>
74 <groupId>org.argeo.dep.osgi</groupId>
75 <artifactId>org.argeo.dep.osgi.activemq</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>org.apache.activemq</groupId>
79 <artifactId>com.springsource.org.apache.activemq.pool</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>org.apache.commons</groupId>
83 <artifactId>com.springsource.org.apache.commons.pool</artifactId>
84 </dependency>
85
86 <!-- JEE required by ActiveMQ Core-->
87 <dependency>
88 <groupId>javax.activation</groupId>
89 <artifactId>com.springsource.javax.activation</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>org.apache.geronimo.specs</groupId>
93 <artifactId>com.springsource.javax.management.j2ee</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>javax.ejb</groupId>
97 <artifactId>com.springsource.javax.ejb</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>javax.xml.rpc</groupId>
101 <artifactId>com.springsource.javax.xml.rpc</artifactId>
102 </dependency>
103 <dependency>
104 <groupId>javax.xml.soap</groupId>
105 <artifactId>com.springsource.javax.xml.soap</artifactId>
106 </dependency>
107 <dependency>
108 <groupId>javax.transaction</groupId>
109 <artifactId>com.springsource.javax.transaction</artifactId>
110 </dependency>
111 <dependency>
112 <groupId>javax.servlet</groupId>
113 <artifactId>com.springsource.javax.servlet</artifactId>
114 </dependency>
115 </dependencies>
116 </project>