]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.testui/pom.xml
Reduce debug verbosity
[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.4</source>
17 <target>1.4</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
37 <dependency>
38 <groupId>org.argeo.dep.jemmy</groupId>
39 <artifactId>org.argeo.dep.jemmy.nb61</artifactId>
40 <version>0.2.2</version>
41 <scope>test</scope>
42 </dependency>
43 <dependency>
44 <groupId>junit</groupId>
45 <artifactId>junit</artifactId>
46 <version>3.8.2</version>
47 <scope>test</scope>
48 </dependency>
49 </dependencies>
50 <distributionManagement>
51 <repository>
52 <uniqueVersion>false</uniqueVersion>
53 <id>argeo-restricted</id>
54 <name>Argeo FOSS Repository</name>
55 <url>file:///var/argeo/maven2/argeo</url>
56 </repository>
57 <snapshotRepository>
58 <uniqueVersion>true</uniqueVersion>
59 <id>argeo-snapshots-restricted</id>
60 <name>Argeo FOSS Snapshots Repository</name>
61 <url>file:///var/argeo/maven2/argeo-snapshots</url>
62 </snapshotRepository>
63 </distributionManagement>
64 </project>