Fixed some major sonar issues in yang-validation-tool
[yangtools.git] / integration-test / bug1196-test-model / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. This
4     program and the accompanying materials are made available under the terms of the
5     Eclipse Public License v1.0 which accompanies this distribution, and is available
6     at http://www.eclipse.org/legal/epl-v10.html -->
7 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9
10     <parent>
11         <groupId>org.opendaylight.yangtools</groupId>
12         <artifactId>yangtools-parent</artifactId>
13         <version>0.8.0-SNAPSHOT</version>
14         <relativePath>/../../common/parent/pom.xml</relativePath>
15     </parent>
16
17     <modelVersion>4.0.0</modelVersion>
18     <artifactId>bug1196-test-model</artifactId>
19     <name>${project.artifactId}</name>
20     <description>${project.artifactId}</description>
21
22     <build>
23         <plugins>
24             <plugin>
25                 <artifactId>maven-jar-plugin</artifactId>
26             </plugin>
27             <plugin>
28                 <groupId>org.opendaylight.yangtools</groupId>
29                 <artifactId>yang-maven-plugin</artifactId>
30                 <dependencies>
31                     <dependency>
32                         <groupId>org.opendaylight.yangtools</groupId>
33                         <artifactId>yang-binding</artifactId>
34                         <version>0.8.0-SNAPSHOT</version>
35                     </dependency>
36                     <dependency>
37                         <groupId>org.opendaylight.yangtools</groupId>
38                         <artifactId>yang-common</artifactId>
39                         <version>0.8.0-SNAPSHOT</version>
40                     </dependency>
41                 </dependencies>
42             </plugin>
43             <plugin>
44                 <groupId>org.apache.felix</groupId>
45                 <artifactId>maven-bundle-plugin</artifactId>
46                 <extensions>true</extensions>
47                 <configuration>
48                     <instructions>
49                         <Bundle-Name>org.opendaylight.yangtools.model.${project.artifactId}</Bundle-Name>
50                     </instructions>
51                 </configuration>
52             </plugin>
53         </plugins>
54     </build>
55
56     <dependencies>
57         <dependency>
58             <groupId>org.opendaylight.yangtools</groupId>
59             <artifactId>yang-binding</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.yangtools</groupId>
63             <artifactId>yang-common</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.yangtools.model</groupId>
67             <artifactId>yang-ext</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.yangtools.model</groupId>
71             <artifactId>ietf-inet-types</artifactId>
72         </dependency>
73     </dependencies>
74
75 </project>