Bump versions for Lithium
[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.7.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.7.0-SNAPSHOT</version>
35                     </dependency>
36                     <dependency>
37                         <groupId>org.opendaylight.yangtools</groupId>
38                         <artifactId>yang-common</artifactId>
39                         <version>0.7.0-SNAPSHOT</version>
40                     </dependency>
41                     <dependency>
42                         <groupId>org.opendaylight.yangtools.model</groupId>
43                         <artifactId>yang-ext</artifactId>
44                         <version>${yang.ext.version}</version>
45                     </dependency>
46                     <dependency>
47                         <groupId>org.opendaylight.yangtools.model</groupId>
48                         <artifactId>ietf-inet-types</artifactId>
49                         <version>${ietf.inet.types.version}</version>
50                     </dependency>
51                 </dependencies>
52             </plugin>
53             <plugin>
54                 <groupId>org.apache.felix</groupId>
55                 <artifactId>maven-bundle-plugin</artifactId>
56                 <extensions>true</extensions>
57                 <configuration>
58                     <instructions>
59                         <Bundle-Name>org.opendaylight.yangtools.model.${project.artifactId}</Bundle-Name>
60                     </instructions>
61                 </configuration>
62             </plugin>
63         </plugins>
64     </build>
65
66     <dependencies>
67         <dependency>
68             <groupId>org.opendaylight.yangtools</groupId>
69             <artifactId>yang-binding</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.yangtools</groupId>
73             <artifactId>yang-common</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.yangtools.model</groupId>
77             <artifactId>yang-ext</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.yangtools.model</groupId>
81             <artifactId>ietf-inet-types</artifactId>
82         </dependency>
83     </dependencies>
84
85 </project>