]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.jemmytest/pom.xml
aa882e1552a137cb7414b4e386de735cebc01aff
[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 <groupId>org.argeo.slc.sandbox</groupId>
6 <artifactId>org.argeo.slc.sandbox.jemmytest</artifactId>
7 <name>SLC Sandbox JemmyTest</name>
8 <version>0.1.2-SNAPSHOT</version>
9 <packaging>bundle</packaging>
10 <build>
11 <plugins>
12 <plugin>
13 <groupId>org.apache.felix</groupId>
14 <artifactId>maven-bundle-plugin</artifactId>
15 <version>1.4.3</version>
16 <extensions>true</extensions>
17 <configuration>
18 <manifestLocation>
19 src/main/resources/META-INF
20 </manifestLocation>
21 <instructions>
22 <Bundle-SymbolicName>
23 ${pom.artifactId}
24 </Bundle-SymbolicName>
25 <Bundle-Activator>
26 org.argeo.slc.jemmytest.JemmyTestActivator
27 </Bundle-Activator>
28 <Export-Package>
29 org.argeo.slc.jemmytest.*
30 </Export-Package>
31 <Import-Package>
32 *,org.springframework.beans.factory.xml
33 </Import-Package>
34 <Require-Bundle>
35 org.argeo.slc.detached
36 </Require-Bundle>
37 </instructions>
38 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-compiler-plugin</artifactId>
43 <configuration>
44 <source>1.3</source>
45 <target>1.3</target>
46 </configuration>
47 </plugin>
48 <plugin>
49 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-source-plugin</artifactId>
51 <executions>
52 <execution>
53 <id>attach-sources</id>
54 <phase>package</phase>
55 <goals>
56 <goal>jar</goal>
57 </goals>
58 </execution>
59 </executions>
60 </plugin>
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-surefire-plugin</artifactId>
64 <configuration>
65 <skipTests>true</skipTests>
66 </configuration>
67 </plugin>
68 </plugins>
69 </build>
70 <profiles></profiles>
71 <dependencies>
72 <dependency>
73 <groupId>org.argeo.slc</groupId>
74 <artifactId>org.argeo.slc.detached</artifactId>
75 <version>0.11.1-SNAPSHOT</version>
76 </dependency>
77
78 <dependency>
79 <groupId>org.argeo.dep.jemmy</groupId>
80 <artifactId>org.argeo.dep.jemmy.nb61</artifactId>
81 <version>0.2.2</version>
82 </dependency>
83
84 <dependency>
85 <groupId>org.eclipse</groupId>
86 <artifactId>osgi</artifactId>
87 <version>3.3.0-v20070530</version>
88 </dependency>
89
90 </dependencies>
91 <repositories>
92 <repository>
93 <id>argeo</id>
94 <url>http://www.argeo.org/maven/argeo</url>
95 </repository>
96 <repository>
97 <id>argeo-snapshots</id>
98 <url>http://www.argeo.org/maven/argeo-snapshots</url>
99 </repository>
100 </repositories>
101 <distributionManagement>
102 <repository>
103 <uniqueVersion>false</uniqueVersion>
104 <id>argeo-restricted</id>
105 <name>Argeo FOSS Repository</name>
106 <url>file:///var/argeo/maven2/argeo</url>
107 </repository>
108 <snapshotRepository>
109 <uniqueVersion>true</uniqueVersion>
110 <id>argeo-snapshots-restricted</id>
111 <name>Argeo FOSS Snapshots Repository</name>
112 <url>file:///var/argeo/maven2/argeo-snapshots</url>
113 </snapshotRepository>
114 </distributionManagement>
115 </project>