]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.jemmytest/pom.xml
Check bundle symbolic name when listing
[gpl/argeo-slc.git] / sandbox / argeo.slc.jemmytest / 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.2-SNAPSHOT</version>
8 <relativePath>../../org.argeo.slc</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.sandbox</groupId>
11 <artifactId>org.argeo.slc.sandbox.jemmytest</artifactId>
12 <name>SLC Sandbox JemmyTest</name>
13 <packaging>jar</packaging>
14 <properties></properties>
15 <build>
16 <plugins>
17 <plugin>
18 <artifactId>maven-jar-plugin</artifactId>
19 </plugin>
20 <plugin>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>maven-bundle-plugin</artifactId>
23 <extensions>true</extensions>
24 <configuration>
25 <instructions>
26 <Export-Package>
27 org.argeo.slc.jemmytest.*
28 </Export-Package>
29 <Import-Package>
30 *,org.springframework.beans.factory.config
31 </Import-Package>
32 <Require-Bundle>
33 org.argeo.slc.detached
34 </Require-Bundle>
35 </instructions>
36
37 </configuration>
38 </plugin>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-compiler-plugin</artifactId>
42 <configuration>
43 <source>1.4</source>
44 <target>1.4</target>
45 </configuration>
46 </plugin>
47 <plugin>
48 <groupId>org.apache.maven.plugins</groupId>
49 <artifactId>maven-source-plugin</artifactId>
50 <executions>
51 <execution>
52 <id>attach-sources</id>
53 <phase>package</phase>
54 <goals>
55 <goal>jar</goal>
56 </goals>
57 </execution>
58 </executions>
59 </plugin>
60 <plugin>
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-surefire-plugin</artifactId>
63 <configuration></configuration>
64 </plugin>
65 </plugins>
66 </build>
67 <profiles></profiles>
68 <dependencies>
69 <dependency>
70 <groupId>org.argeo.slc</groupId>
71 <artifactId>org.argeo.slc.detached</artifactId>
72 <version>${project.version}</version>
73 <exclusions>
74 <exclusion>
75 <groupId>org.apache.commons</groupId>
76 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
77 </exclusion>
78 </exclusions>
79 </dependency>
80
81 <dependency>
82 <groupId>org.argeo.dep.jemmy</groupId>
83 <artifactId>org.argeo.dep.jemmy.nb61</artifactId>
84 </dependency>
85
86 <dependency>
87 <groupId>org.argeo.slc</groupId>
88 <artifactId>org.argeo.slc.detached.launcher</artifactId>
89 <version>${project.version}</version>
90 <exclusions>
91 <exclusion>
92 <groupId>org.apache.commons</groupId>
93 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
94 </exclusion>
95 </exclusions>
96 </dependency>
97
98 <dependency>
99 <groupId>org.argeo.slc</groupId>
100 <artifactId>org.argeo.slc.agent</artifactId>
101 <version>${project.version}</version>
102 <exclusions>
103 <exclusion>
104 <groupId>org.apache.commons</groupId>
105 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
106 </exclusion>
107 </exclusions>
108 </dependency>
109
110 </dependencies>
111 </project>