]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.activemq/pom.xml
Build XML String
[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.jms.*,org.argeo.slc.activemq
39 </Export-Package>
40 <!--
41 <Import-Package>*,
42 org.springframework.beans.factory.xml,
43 org.apache.xbean.spring.context.v2,
44 com.thoughtworks.qdox;resolution:=optional,
45 com.thoughtworks.qdox.model;resolution:=optional,
46 org.apache.tools.ant;resolution:=optional,
47 org.apache.tools.ant.taskdefs;resolution:=optional,
48 org.apache.tools.ant.types;resolution:=optional
49 </Import-Package>
50 <Fragment-Host>com.springsource.org.apache.activemq</Fragment-Host>
51 <Embed-Dependency>com.springsource.org.apache.xbean.spring</Embed-Dependency>
52 -->
53 </instructions>
54 </configuration>
55 </plugin>
56 <!--
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-dependency-plugin</artifactId>
60 <executions>
61 <execution>
62 <id>copy-dependencies</id>
63 <phase>process-resources</phase>
64 <goals>
65 <goal>copy-dependencies</goal>
66 </goals>
67 <configuration>
68 <includeArtifactIds>com.springsource.org.apache.xbean.spring</includeArtifactIds>
69 <outputDirectory>${project.build.directory}/classes</outputDirectory>
70 </configuration>
71 </execution>
72 </executions>
73 </plugin>
74 -->
75 </plugins>
76 </build>
77 <dependencies>
78 <!-- SLC -->
79 <dependency>
80 <groupId>org.argeo.slc.runtime</groupId>
81 <artifactId>org.argeo.slc.support.simple</artifactId>
82 </dependency>
83
84 <!-- Spring -->
85 <dependency>
86 <groupId>org.springframework</groupId>
87 <artifactId>org.springframework.jms</artifactId>
88 </dependency>
89 <dependency>
90 <groupId>org.springframework.ws</groupId>
91 <artifactId>org.springframework.oxm</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>org.springframework</groupId>
95 <artifactId>org.springframework.transaction</artifactId>
96 </dependency>
97
98 <!-- JMS -->
99 <dependency>
100 <groupId>javax.jms</groupId>
101 <artifactId>com.springsource.javax.jms</artifactId>
102 </dependency>
103 <dependency>
104 <groupId>org.apache.geronimo.specs</groupId>
105 <artifactId>com.springsource.javax.management.j2ee</artifactId>
106 </dependency>
107
108 <!-- ActiveMQ
109 <dependency>
110 <groupId>org.apache.activemq</groupId>
111 <artifactId>com.springsource.org.apache.activemq</artifactId>
112 </dependency>
113 <dependency>
114 <groupId>org.apache.xbean</groupId>
115 <artifactId>com.springsource.org.apache.xbean.spring</artifactId>
116
117 </dependency>
118 -->
119
120 <dependency>
121 <groupId>org.argeo.dep.osgi</groupId>
122 <artifactId>org.argeo.dep.osgi.activemq</artifactId>
123 </dependency>
124 <!--
125 <dependency> <groupId>org.apache.activemq</groupId>
126 <artifactId>activemq-pool</artifactId> </dependency> <dependency>
127 <groupId>org.apache.activemq</groupId>
128 <artifactId>activemq-optional</artifactId> </dependency>
129 -->
130
131 <dependency>
132 <groupId>javax.ejb</groupId>
133 <artifactId>com.springsource.javax.ejb</artifactId>
134 <version>3.0.0</version>
135 </dependency>
136 <dependency>
137 <groupId>javax.xml.rpc</groupId>
138 <artifactId>com.springsource.javax.xml.rpc</artifactId>
139 <version>1.1.0</version>
140 </dependency>
141 <dependency>
142 <groupId>javax.xml.soap</groupId>
143 <artifactId>com.springsource.javax.xml.soap</artifactId>
144 <version>1.3.0</version>
145 </dependency>
146 <dependency>
147 <groupId>javax.activation</groupId>
148 <artifactId>com.springsource.javax.activation</artifactId>
149 <version>1.1.1</version>
150 </dependency>
151 <dependency>
152 <groupId>javax.servlet</groupId>
153 <artifactId>com.springsource.javax.servlet</artifactId>
154 </dependency>
155
156 <dependency>
157 <groupId>org.apache.camel</groupId>
158 <artifactId>com.springsource.org.apache.camel</artifactId>
159 </dependency>
160
161
162 </dependencies>
163 </project>