]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.jemmytest/pom.xml
Introduce log4j conf for SLC Detached (not working yet)
[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.2-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 <properties></properties>
16 <build>
17 <plugins>
18 <plugin>
19 <groupId>org.apache.felix</groupId>
20 <artifactId>maven-bundle-plugin</artifactId>
21 <version>1.4.3</version>
22 <extensions>true</extensions>
23 <configuration>
24 <manifestLocation>
25 src/main/resources/META-INF
26 </manifestLocation>
27 <instructions>
28 <Bundle-SymbolicName>
29 ${pom.artifactId}
30 </Bundle-SymbolicName>
31 <Bundle-Activator>
32 org.argeo.slc.jemmytest.JemmyTestActivator
33 </Bundle-Activator>
34 <Export-Package>
35 org.argeo.slc.jemmytest.*
36 </Export-Package>
37 <Import-Package>
38 *,org.springframework.beans.factory.xml;version=2.0.8
39 </Import-Package>
40 <Require-Bundle>
41 org.argeo.slc.detached
42 </Require-Bundle>
43 <_removeheaders>Bnd-LastModified</_removeheaders>
44 </instructions>
45
46 </configuration>
47 </plugin>
48 <plugin>
49 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-compiler-plugin</artifactId>
51 <configuration>
52 <source>1.4</source>
53 <target>1.2</target>
54 </configuration>
55 </plugin>
56 <plugin>
57 <groupId>org.apache.maven.plugins</groupId>
58 <artifactId>maven-source-plugin</artifactId>
59 <executions>
60 <execution>
61 <id>attach-sources</id>
62 <phase>package</phase>
63 <goals>
64 <goal>jar</goal>
65 </goals>
66 </execution>
67 </executions>
68 </plugin>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-surefire-plugin</artifactId>
72 <configuration></configuration>
73 </plugin>
74 </plugins>
75 </build>
76 <profiles></profiles>
77 <dependencies>
78 <dependency>
79 <groupId>org.argeo.slc</groupId>
80 <artifactId>org.argeo.slc.detached</artifactId>
81 <version>${project.version}</version>
82 </dependency>
83
84 <dependency>
85 <groupId>org.argeo.slc</groupId>
86 <artifactId>org.argeo.slc.agent</artifactId>
87 <version>${project.version}</version>
88 <scope>test</scope>
89 </dependency>
90
91
92 <dependency>
93 <groupId>org.springframework</groupId>
94 <artifactId>org.springframework.context</artifactId>
95 </dependency>
96
97 <dependency>
98 <groupId>org.apache.felix</groupId>
99 <artifactId>org.osgi.core</artifactId>
100 </dependency>
101
102 <dependency>
103 <groupId>org.argeo.dep.jemmy</groupId>
104 <artifactId>org.argeo.dep.jemmy.nb61</artifactId>
105 </dependency>
106 </dependencies>
107 </project>