]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.testui/pom.xml
9192439c8f2d660001a3649556ab70ef641e42fd
[gpl/argeo-slc.git] / sandbox / argeo.slc.testui / 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.testui</artifactId>
7 <name>SLC Test UI</name>
8 <version>0.1.1-SNAPSHOT</version>
9 <packaging>jar</packaging>
10 <build>
11 <plugins>
12 <plugin>
13 <groupId>org.apache.maven.plugins</groupId>
14 <artifactId>maven-compiler-plugin</artifactId>
15 <configuration>
16 <source>1.3</source>
17 <target>1.3</target>
18 </configuration>
19 </plugin>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-source-plugin</artifactId>
23 <executions>
24 <execution>
25 <id>attach-sources</id>
26 <phase>package</phase>
27 <goals>
28 <goal>jar</goal>
29 </goals>
30 </execution>
31 </executions>
32 </plugin>
33 </plugins>
34 </build>
35 <dependencies>
36 <dependency>
37 <groupId>org.argeo.slc</groupId>
38 <artifactId>org.argeo.slc.autoui</artifactId>
39 <version>0.11.1-SNAPSHOT</version>
40 <scope>test</scope>
41 <exclusions>
42 <exclusion>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>org.osgi.core</artifactId>
45 </exclusion>
46 <exclusion>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.apache.felix.main</artifactId>
49 </exclusion>
50 </exclusions>
51 </dependency>
52
53 <dependency>
54 <groupId>org.argeo.dep.jemmy</groupId>
55 <artifactId>org.argeo.dep.jemmy.nb61</artifactId>
56 <version>0.2.1-SNAPSHOT</version>
57 <scope>test</scope>
58 </dependency>
59 <dependency>
60 <groupId>junit</groupId>
61 <artifactId>junit</artifactId>
62 <version>3.8.2</version>
63 <scope>test</scope>
64 </dependency>
65 </dependencies>
66 <distributionManagement>
67 <repository>
68 <uniqueVersion>false</uniqueVersion>
69 <id>argeo-restricted</id>
70 <name>Argeo FOSS Repository</name>
71 <url>file:///var/argeo/maven2/argeo</url>
72 </repository>
73 <snapshotRepository>
74 <uniqueVersion>true</uniqueVersion>
75 <id>argeo-snapshots-restricted</id>
76 <name>Argeo FOSS Snapshots Repository</name>
77 <url>file:///var/argeo/maven2/argeo-snapshots</url>
78 </snapshotRepository>
79 </distributionManagement>
80 </project>