]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.jemmy/pom.xml
Call the right views, simple vertical splitter
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.jemmy / 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>runtime</artifactId>
7 <version>0.11.4-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.support.jemmy</artifactId>
12 <name>Argeo SLC Support Jemmy</name>
13 <description>Helper classes for the Jemmy framework</description>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 <configuration>
20 <source>1.4</source>
21 <target>1.4</target>
22 </configuration>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-source-plugin</artifactId>
27 </plugin>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-surefire-plugin</artifactId>
31 </plugin>
32 <plugin>
33 <groupId>org.apache.maven.plugins</groupId>
34 <artifactId>maven-jar-plugin</artifactId>
35 </plugin>
36 <plugin>
37 <groupId>org.apache.felix</groupId>
38 <artifactId>maven-bundle-plugin</artifactId>
39 <version>${version.maven-bundle-plugin}</version>
40 <configuration>
41 <instructions>
42 <Export-Package>
43 org.argeo.slc.jemmy
44 </Export-Package>
45 <Import-Package>org.netbeans.jemmy,
46 org.netbeans.jemmy.operators,
47 org.netbeans.jemmy.util
48 </Import-Package>
49 </instructions>
50 </configuration>
51 </plugin>
52
53 </plugins>
54 </build>
55 <dependencies>
56
57 <dependency>
58 <groupId>org.argeo.dep.jemmy</groupId>
59 <artifactId>org.argeo.dep.jemmy.nb61</artifactId>
60 </dependency>
61
62 </dependencies>
63 </project>