xref: /Universal-ctags/Units/simple-maven2.d/input.xml (revision 5e9ed16a28d321d49bf2b80007cccbaa0402f1d0)
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2<!-- Taken from
3     rhevm-3.5.6.2-0.1.el6ev:ovirt-engine/backend/pom.xml -->
4  <modelVersion>4.0.0</modelVersion>
5
6  <parent>
7    <groupId>org.ovirt.engine</groupId>
8    <artifactId>root</artifactId>
9    <version>3.5.6.2</version>
10  </parent>
11
12  <artifactId>backend</artifactId>
13  <groupId>org.ovirt.engine.core</groupId>
14  <packaging>pom</packaging>
15
16  <name>oVirt Modules - backend</name>
17  <description>parent POM for all oVirt modules</description>
18
19  <modules>
20    <module>manager</module>
21  </modules>
22
23  <properties>
24    <engine.groupId>org.ovirt.engine.core</engine.groupId>
25  </properties>
26
27  <repositories>
28    <repository>
29      <id>central</id>
30      <name>maven repo1</name>
31      <layout>default</layout>
32      <url>http://repo1.maven.org/maven2</url>
33      <snapshots>
34        <enabled>false</enabled>
35      </snapshots>
36    </repository>
37  </repositories>
38
39  <dependencies>
40    <dependency>
41      <groupId>org.ovirt.engine.api</groupId>
42      <artifactId>ovirt-engine-extensions-api</artifactId>
43      <version>${org.ovirt.engine.api.ovirt-engine-extensions-api.version}</version>
44    </dependency>
45    <dependency>
46      <groupId>commons-collections</groupId>
47      <artifactId>commons-collections</artifactId>
48    </dependency>
49  </dependencies>
50</project>
51