]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/runtime/org.argeo.security.activemq/pom.xml
Integrate LDAP and JCR
[lgpl/argeo-commons.git] / security / runtime / org.argeo.security.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.commons.security</groupId>
6 <artifactId>runtime</artifactId>
7 <version>0.2.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.security.activemq</artifactId>
11 <name>Commons Security ActiveMQ</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 </plugin>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-source-plugin</artifactId>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-jar-plugin</artifactId>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.felix</groupId>
28 <artifactId>maven-bundle-plugin</artifactId>
29 <version>${version.maven-bundle-plugin}</version>
30 <configuration>
31 <instructions>
32 <Export-Package>
33 org.argeo.security.activemq.*
34 </Export-Package>
35 </instructions>
36 </configuration>
37 </plugin>
38 </plugins>
39 </build>
40 <dependencies>
41 <dependency>
42 <groupId>org.argeo.commons.basic</groupId>
43 <artifactId>org.argeo.basic.nodeps</artifactId>
44 <version>${version.argeo-commons}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.argeo.commons.security</groupId>
48 <artifactId>org.argeo.security.core</artifactId>
49 <version>${version.argeo-commons}</version>
50 </dependency>
51
52 <!-- Spring -->
53 <dependency>
54 <groupId>org.springframework</groupId>
55 <artifactId>org.springframework.transaction</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.springframework.security</groupId>
59 <artifactId>org.springframework.security.core</artifactId>
60 </dependency>
61
62 <!-- Logging -->
63 <dependency>
64 <groupId>org.slf4j</groupId>
65 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
66 </dependency>
67
68 <!-- JMS -->
69 <dependency>
70 <groupId>org.argeo.dep.osgi</groupId>
71 <artifactId>org.argeo.dep.osgi.activemq</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>javax.jms</groupId>
75 <artifactId>com.springsource.javax.jms</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>org.springframework</groupId>
79 <artifactId>org.springframework.jms</artifactId>
80 </dependency>
81
82 <!-- TEST -->
83 <dependency>
84 <groupId>org.junit</groupId>
85 <artifactId>com.springsource.junit</artifactId>
86 <scope>test</scope>
87 </dependency>
88 </dependencies>
89 </project>