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