]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
Execution
[gpl/argeo-slc.git] / 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 <groupId>org.argeo.slc.maven</groupId>
5 <version>0.1.2</version>
6 <artifactId>slc-maven</artifactId>
7 <packaging>pom</packaging>
8 <name>Argeo Maven</name>
9 <modules>
10 <module>org.argeo.slc.maven.plugin</module>
11 <module>maven-argeo-qooxdoo-plugin</module>
12 <module>maven-argeo-osgi-plugin</module>
13 </modules>
14 <build>
15 <plugins>
16 <plugin>
17 <artifactId>maven-compiler-plugin</artifactId>
18 <configuration>
19 <source>1.4</source>
20 <target>1.4</target>
21 </configuration>
22 </plugin>
23 </plugins>
24 </build>
25 <dependencyManagement>
26 <dependencies>
27 <dependency>
28 <groupId>org.apache.maven</groupId>
29 <artifactId>maven-plugin-api</artifactId>
30 <version>2.0</version>
31 </dependency>
32 <dependency>
33 <groupId>org.apache.maven</groupId>
34 <artifactId>maven-project</artifactId>
35 <version>2.0.7</version>
36 </dependency>
37 <dependency>
38 <groupId>org.codehaus.plexus</groupId>
39 <artifactId>plexus-archiver</artifactId>
40 <version>1.0-alpha-9</version>
41 <exclusions>
42 <exclusion>
43 <groupId>org.codehaus.plexus</groupId>
44 <artifactId>plexus-container-default
45 </artifactId>
46 </exclusion>
47 <exclusion>
48 <groupId>org.codehaus.plexus</groupId>
49 <artifactId>plexus-component-api</artifactId>
50 </exclusion>
51 </exclusions>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.maven</groupId>
55 <artifactId>maven-script-ant</artifactId>
56 <version>2.0.9</version>
57 </dependency>
58 <dependency>
59 <groupId>commons-io</groupId>
60 <artifactId>commons-io</artifactId>
61 <version>1.4</version>
62 </dependency>
63 <dependency>
64 <groupId>ant-contrib</groupId>
65 <artifactId>ant-contrib</artifactId>
66 <version>1.0b3</version>
67 <exclusions>
68 <exclusion>
69 <groupId>ant</groupId>
70 <artifactId>ant</artifactId>
71 </exclusion>
72 </exclusions>
73 </dependency>
74 </dependencies>
75 </dependencyManagement>
76 <distributionManagement>
77 <repository>
78 <uniqueVersion>false</uniqueVersion>
79 <id>argeo-restricted</id>
80 <name>Argeo FOSS Repository</name>
81 <url>file:///var/argeo/maven2/argeo</url>
82 </repository>
83 <snapshotRepository>
84 <uniqueVersion>true</uniqueVersion>
85 <id>argeo-snapshots-restricted</id>
86 <name>Argeo FOSS Snapshots Repository</name>
87 <url>file:///var/argeo/maven2/argeo-snapshots</url>
88 </snapshotRepository>
89 <site>
90 <id>argeo-slc-site</id>
91 <name>SLC Site</name>
92 <url>
93 file:///var/argeo/projects/SLC/www/site/${project.version}
94 </url>
95 </site>
96 </distributionManagement>
97
98 </project>
99