6c5d681eeaa8ea04de3734c4a83ef127f691cce5
[mdsal.git] / code-generator / binding-model-api / pom.xml
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/xsd/maven-4.0.0.xsd">
2
3     <parent>
4         <groupId>org.opendaylight.yangtools</groupId>
5         <artifactId>binding-generator</artifactId>
6         <version>0.5.8</version>
7     </parent>
8
9     <modelVersion>4.0.0</modelVersion>
10     <artifactId>binding-model-api</artifactId>
11     <name>${project.artifactId}</name>
12     <description>${project.artifactId}</description>
13
14     <dependencies>
15         <dependency>
16             <groupId>org.opendaylight.yangtools</groupId>
17             <artifactId>yang-model-api</artifactId>
18         </dependency>
19     </dependencies>
20
21     <build>
22         <plugins>
23             <plugin>
24                 <artifactId>maven-jar-plugin</artifactId>
25             </plugin>
26             <plugin>
27                 <groupId>org.apache.felix</groupId>
28                 <artifactId>maven-bundle-plugin</artifactId>
29                 <extensions>true</extensions>
30                 <configuration>
31                     <instructions>
32                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
33                     </instructions>
34                 </configuration>
35             </plugin>
36         </plugins>
37     </build>
38
39 </project>