Updated pom files, added concepts component
[yangtools.git] / yang / yang-model-util / 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/xsd/maven-4.0.0.xsd">
3
4     <parent>
5         <groupId>org.opendaylight.yangtools</groupId>
6         <artifactId>yang</artifactId>
7         <version>0.5.8-SNAPSHOT</version>
8     </parent>
9
10     <modelVersion>4.0.0</modelVersion>
11     <artifactId>yang-model-util</artifactId>
12     <name>${project.artifactId}</name>
13     <description>${project.artifactId}</description>
14
15     <dependencies>
16         <dependency>
17             <groupId>${project.groupId}</groupId>
18             <artifactId>yang-model-api</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>org.eclipse.xtend</groupId>
22             <artifactId>org.eclipse.xtend.lib</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>junit</groupId>
26             <artifactId>junit</artifactId>
27         </dependency>
28     </dependencies>
29
30     <build>
31         <plugins>
32             <plugin>
33                 <groupId>org.eclipse.xtend</groupId>
34                 <artifactId>xtend-maven-plugin</artifactId>
35             </plugin>
36         </plugins>
37     </build>
38 </project>