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 
4
        http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
        
6
    <modelVersion>4.0.0</modelVersion>
7
    
8
    <groupId>org.libvirt</groupId>
9
    <artifactId>libvirt</artifactId>
10
    <packaging>jar</packaging>
11
    <version>@version@</version>
12
    <name>libvirt java bindings</name>
13
    <description>Java API for the libvirt C library</description>
14
    <url>http://www.libvirt.org</url>
15
    <licenses>
16
        <license>
17
            <name>LGPLv2.1</name>
18
            <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
19
        </license>
20
    </licenses>
21
    <scm>
22
    	<url>http://www.libvirt.org/git/?p=libvirt-java.git;a=summary</url>
23
    </scm>
24
25
    <dependencies>
26
        <dependency>
27
          <groupId>net.java.dev.jna</groupId>
28
          <artifactId>jna</artifactId>
29
          <scope>provided</scope>
30
          <version>3.0.9</version>
31
        </dependency>
32
    </dependencies>
33
34
</project>