]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.testui/pom.xml
Add distribution management
[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 <distributionManagement>
36 <repository>
37 <uniqueVersion>false</uniqueVersion>
38 <id>argeo-restricted</id>
39 <name>Argeo FOSS Repository</name>
40 <url>file:///var/argeo/maven2/argeo</url>
41 </repository>
42 <snapshotRepository>
43 <uniqueVersion>true</uniqueVersion>
44 <id>argeo-snapshots-restricted</id>
45 <name>Argeo FOSS Snapshots Repository</name>
46 <url>file:///var/argeo/maven2/argeo-snapshots</url>
47 </snapshotRepository>
48 </distributionManagement>
49 </project>