]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.activemq/pom.xml
62848dd8d12378127db04301b904334aed2cec78
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.activemq / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.slc</groupId>
5 <artifactId>runtime</artifactId>
6 <version>1.1.1-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.support.activemq</artifactId>
11 <name>SLC Support ActiveMQ</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>maven-bundle-plugin</artifactId>
17
18 <configuration>
19 <instructions>
20 <Export-Package>
21 org.argeo.slc.jms.*,org.argeo.slc.activemq
22 </Export-Package>
23 </instructions>
24 </configuration>
25 </plugin>
26 </plugins>
27 </build>
28 <dependencies>
29 <!-- SLC -->
30 <dependency>
31 <groupId>org.argeo.slc.runtime</groupId>
32 <artifactId>org.argeo.slc.core</artifactId>
33 <version>1.1.1-SNAPSHOT</version>
34 </dependency>
35
36 <!-- Spring -->
37 <dependency>
38 <groupId>org.argeo.tp</groupId>
39 <artifactId>org.springframework.jms</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>org.argeo.tp</groupId>
43 <artifactId>org.springframework.oxm</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.argeo.tp</groupId>
47 <artifactId>org.springframework.transaction</artifactId>
48 </dependency>
49
50 <!-- AOP -->
51 <dependency>
52 <groupId>org.argeo.tp</groupId>
53 <artifactId>org.aspectj.weaver</artifactId>
54 </dependency>
55
56 <!-- JMS -->
57 <dependency>
58 <groupId>org.argeo.tp</groupId>
59 <artifactId>javax.jms</artifactId>
60 </dependency>
61
62 <!-- ActiveMQ -->
63 <dependency>
64 <groupId>org.argeo.tp</groupId>
65 <artifactId>org.apache.activemq</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.argeo.tp</groupId>
69 <artifactId>org.apache.commons.pool</artifactId>
70 </dependency>
71
72 <!-- JEE required by ActiveMQ Core -->
73 <dependency>
74 <groupId>org.argeo.tp</groupId>
75 <artifactId>javax.management.j2ee</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>org.argeo.tp</groupId>
79 <artifactId>javax.ejb</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>org.argeo.tp</groupId>
83 <artifactId>javax.xml.rpc</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.argeo.tp</groupId>
87 <artifactId>javax.servlet</artifactId>
88 </dependency>
89 </dependencies>
90 </project>