]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.jemmytest/pom.xml
Introduce doItAgain skip until error
[gpl/argeo-slc.git] / sandbox / argeo.slc.jemmytest / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo.slc</groupId>
7 <artifactId>argeo-slc</artifactId>
8 <version>0.11.1-SNAPSHOT</version>
9 <relativePath>../org.argeo.slc</relativePath>
10 </parent>
11 <groupId>org.argeo.slc.sandbox</groupId>
12 <artifactId>org.argeo.slc.sandbox.jemmytest</artifactId>
13 <name>SLC Sandbox JemmyTest</name>
14 <packaging>bundle</packaging>
15 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.felix</groupId>
19 <artifactId>maven-bundle-plugin</artifactId>
20 <version>1.4.3</version>
21 <extensions>true</extensions>
22 <configuration>
23 <manifestLocation>
24 src/main/resources/META-INF
25 </manifestLocation>
26 <instructions>
27 <Bundle-SymbolicName>
28 ${pom.artifactId}
29 </Bundle-SymbolicName>
30 <Bundle-Activator>
31 org.argeo.slc.jemmytest.JemmyTestActivator
32 </Bundle-Activator>
33 <Export-Package>
34 org.argeo.slc.jemmytest.*
35 </Export-Package>
36 <Import-Package>
37 *,org.springframework.beans.factory.xml
38 </Import-Package>
39 <Require-Bundle>
40 org.argeo.slc.detached
41 </Require-Bundle>
42 </instructions>
43 </configuration>
44 </plugin>
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-compiler-plugin</artifactId>
48 <configuration>
49 <source>1.3</source>
50 <target>1.3</target>
51 </configuration>
52 </plugin>
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-source-plugin</artifactId>
56 <executions>
57 <execution>
58 <id>attach-sources</id>
59 <phase>package</phase>
60 <goals>
61 <goal>jar</goal>
62 </goals>
63 </execution>
64 </executions>
65 </plugin>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-surefire-plugin</artifactId>
69 <configuration></configuration>
70 </plugin>
71 </plugins>
72 </build>
73 <profiles></profiles>
74 <dependencies>
75 <dependency>
76 <groupId>org.argeo.slc</groupId>
77 <artifactId>org.argeo.slc.detached</artifactId>
78 <version>${project.version}</version>
79 </dependency>
80
81 <dependency>
82 <groupId>org.argeo.slc</groupId>
83 <artifactId>argeo-slc-agent</artifactId>
84 <version>${project.version}</version>
85 <scope>test</scope>
86 </dependency>
87
88
89 <dependency>
90 <groupId>org.springframework</groupId>
91 <artifactId>spring-context</artifactId>
92 <version>2.0.8</version>
93 </dependency>
94
95 <dependency>
96 <groupId>org.apache.felix</groupId>
97 <artifactId>org.osgi.core</artifactId>
98 </dependency>
99
100 <dependency>
101 <groupId>org.argeo.dep.jemmy</groupId>
102 <artifactId>org.argeo.dep.jemmy.nb61</artifactId>
103 </dependency>
104
105 <dependency>
106 <groupId>junit</groupId>
107 <artifactId>junit</artifactId>
108 <scope>test</scope>
109 </dependency>
110
111 </dependencies>
112 </project>