]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.activemq/pom.xml
Move SLC Execution to runtime
[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>argeo-slc</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>../../org.argeo.slc</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.*
39 </Export-Package>
40 </instructions>
41 </configuration>
42 </plugin>
43
44 </plugins>
45 </build>
46 <dependencies>
47 <!-- SLC -->
48 <dependency>
49 <groupId>org.argeo.slc.runtime</groupId>
50 <artifactId>org.argeo.slc.support.simple</artifactId>
51 </dependency>
52
53 <!-- Spring -->
54 <dependency>
55 <groupId>org.springframework</groupId>
56 <artifactId>org.springframework.jms</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>org.springframework.ws</groupId>
60 <artifactId>org.springframework.oxm</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>org.springframework</groupId>
64 <artifactId>org.springframework.transaction</artifactId>
65 </dependency>
66
67 <!-- JMS -->
68 <dependency>
69 <groupId>javax.jms</groupId>
70 <artifactId>com.springsource.javax.jms</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.geronimo.specs</groupId>
74 <artifactId>com.springsource.javax.management.j2ee</artifactId>
75 </dependency>
76
77 <!-- ActiveMQ -->
78 <dependency>
79 <groupId>org.apache.activemq</groupId>
80 <artifactId>com.springsource.org.apache.activemq</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.apache.xbean</groupId>
84 <artifactId>com.springsource.org.apache.xbean.spring</artifactId>
85 </dependency>
86 <!--
87 <dependency>
88 <groupId>org.apache.activemq</groupId>
89 <artifactId>activemq-pool</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>org.apache.activemq</groupId>
93 <artifactId>activemq-optional</artifactId>
94 </dependency>
95 -->
96 </dependencies>
97 </project>