]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
e31d0bfb2fda5443fbb1a3e3e409ad729cf41267
[gpl/argeo-slc.git] / 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.1-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>META-INF</manifestLocation>
19 <instructions>
20 <Bundle-SymbolicName>
21 ${pom.artifactId}
22 </Bundle-SymbolicName>
23 <Bundle-Activator>
24 org.argeo.slc.jemmytest.JemmyTestActivator
25 </Bundle-Activator>
26 <Import-Package>
27 !org.apache.felix.*,*,javax.swing.*
28 </Import-Package>
29 <Export-Package>
30 org.argeo.slc.jemmytest.*
31 </Export-Package>
32 <!--
33 <Require-Bundle>
34 org.argeo.slc.autoui
35 </Require-Bundle> -->
36 </instructions>
37 </configuration>
38 </plugin>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-compiler-plugin</artifactId>
42 <configuration>
43 <source>1.3</source>
44 <target>1.3</target>
45 </configuration>
46 </plugin>
47 <plugin>
48 <groupId>org.apache.maven.plugins</groupId>
49 <artifactId>maven-source-plugin</artifactId>
50 <executions>
51 <execution>
52 <id>attach-sources</id>
53 <phase>package</phase>
54 <goals>
55 <goal>jar</goal>
56 </goals>
57 </execution>
58 </executions>
59 </plugin>
60 <plugin>
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-surefire-plugin</artifactId>
63 <configuration>
64 <skipTests>true</skipTests>
65 </configuration>
66 </plugin>
67 </plugins>
68 </build>
69 <profiles></profiles>
70 <dependencies>
71 <dependency>
72 <groupId>org.argeo.slc</groupId>
73 <artifactId>org.argeo.slc.autoui</artifactId>
74 <version>0.10.3-SNAPSHOT</version>
75 <exclusions>
76 <exclusion>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>org.osgi.core</artifactId>
79 </exclusion>
80 <exclusion>
81 <groupId>org.apache.felix</groupId>
82 <artifactId>org.apache.felix.main</artifactId>
83 </exclusion>
84 </exclusions>
85 </dependency>
86
87 <dependency>
88 <groupId>org.argeo.dep.jemmy</groupId>
89 <artifactId>org.argeo.dep.jemmy.nb61</artifactId>
90 <version>0.2.0</version>
91 </dependency>
92 <dependency>
93 <groupId>junit</groupId>
94 <artifactId>junit</artifactId>
95 <version>3.8.2</version>
96 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.argeo.slc.sandbox</groupId>
100 <artifactId>org.argeo.slc.sandbox.testui</artifactId>
101 <version>0.1.1-SNAPSHOT</version>
102 <scope>test</scope>
103 </dependency>
104
105 <!-- OSGi -->
106 <dependency>
107 <groupId>org.apache.felix</groupId>
108 <artifactId>org.apache.felix.main</artifactId>
109 <version>1.2.1</version>
110 </dependency>
111 </dependencies>
112 <repositories>
113 <repository>
114 <id>argeo</id>
115 <url>http://www.argeo.org/maven/argeo</url>
116 </repository>
117 </repositories>
118 </project>