]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.activemq.selector/pom.xml
Write a long expression to avoid regexp collision and full copy of qx folder...
[gpl/argeo-slc.git] / sandbox / argeo.slc.activemq.selector / 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.runtime</groupId>
6 <artifactId>argeo-slc-runtime</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>../../runtime/</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.sandbox</groupId>
11 <artifactId>argeo.slc.activemq.selector</artifactId>
12 <name>Argeo SLC ActiveMQ Selector Tests</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 </plugin>
36 <plugin>
37 <groupId>org.argeo.slc.maven</groupId>
38 <artifactId>maven-argeo-osgi-plugin</artifactId>
39 <configuration>
40 <systemProperties>
41 <slc.osgi.bundles>${basedir}/bundles;in=*;ex=**/.svn/**,${basedir}/target;in=*.jar;ex=*-sources.jar</slc.osgi.bundles>
42 <slc.osgi.start>
43 org.springframework.osgi.extender,
44 argeo.slc.activemq.selector.jms
45 </slc.osgi.start>
46 </systemProperties>
47 </configuration>
48 </plugin>
49
50 </plugins>
51 </build>
52 <dependencies>
53 <!--
54 Spring -->
55 <dependency>
56 <groupId>org.springframework</groupId>
57 <artifactId>org.springframework.jms</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>org.springframework</groupId>
61 <artifactId>org.springframework.transaction</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.springframework.osgi</groupId>
65 <artifactId>org.springframework.osgi.extender</artifactId>
66 </dependency>
67
68 <!-- JMS -->
69 <dependency>
70 <groupId>javax.jms</groupId>
71 <artifactId>com.springsource.javax.jms</artifactId>
72 </dependency>
73
74 <!-- ActiveMQ -->
75 <dependency>
76 <groupId>org.argeo.dep.osgi</groupId>
77 <artifactId>org.argeo.dep.osgi.activemq</artifactId>
78 </dependency>
79 <dependency>
80 <groupId>org.apache.geronimo.specs</groupId>
81 <artifactId>com.springsource.javax.management.j2ee</artifactId>
82 </dependency>
83 <dependency>
84 <groupId>javax.activation</groupId>
85 <artifactId>com.springsource.javax.activation</artifactId>
86 </dependency>
87 <dependency>
88 <groupId>javax.servlet</groupId>
89 <artifactId>com.springsource.javax.servlet</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>javax.ejb</groupId>
93 <artifactId>com.springsource.javax.ejb</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>javax.xml.rpc</groupId>
97 <artifactId>com.springsource.javax.xml.rpc</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>javax.xml.soap</groupId>
101 <artifactId>com.springsource.javax.xml.soap</artifactId>
102 </dependency>
103
104 <dependency>
105 <groupId>javax.xml.stream</groupId>
106 <artifactId>
107 com.springsource.javax.xml.stream
108 </artifactId>
109 </dependency>
110 <dependency>
111 <groupId>org.apache.xalan</groupId>
112 <artifactId>
113 com.springsource.org.apache.xalan
114 </artifactId>
115 </dependency>
116
117
118
119 <dependency>
120 <groupId>org.apache.log4j</groupId>
121 <artifactId>com.springsource.org.apache.log4j</artifactId>
122 </dependency>
123
124 <dependency>
125 <groupId>org.junit</groupId>
126 <artifactId>com.springsource.junit</artifactId>
127 <scope>test</scope>
128 </dependency>
129 <dependency>
130 <groupId>org.argeo.slc.runtime</groupId>
131 <artifactId>org.argeo.slc.osgiboot</artifactId>
132 <scope>test</scope>
133 </dependency>
134 </dependencies>
135 </project>