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