1289e1118a054a8e7425132843ef7aa0d1ac9f78
[mdsal.git] / code-generator / maven-sal-api-gen-plugin / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13     <parent>
14         <artifactId>binding-generator</artifactId>
15         <groupId>org.opendaylight.yangtools</groupId>
16         <version>0.6.0-SNAPSHOT</version>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <artifactId>maven-sal-api-gen-plugin</artifactId>
21
22     <dependencies>
23         <dependency>
24             <groupId>org.opendaylight.yangtools</groupId>
25             <artifactId>yang-maven-plugin-spi</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.yangtools</groupId>
29             <artifactId>binding-model-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.yangtools</groupId>
33             <artifactId>binding-generator-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>binding-generator-impl</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.yangtools</groupId>
41             <artifactId>binding-java-api-generator</artifactId>
42         </dependency>
43
44         <dependency>
45             <groupId>org.opendaylight.yangtools</groupId>
46             <artifactId>yang-data-api</artifactId>
47         </dependency>
48
49         <dependency>
50             <groupId>org.sonatype.plexus</groupId>
51             <artifactId>plexus-build-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.codehaus.plexus</groupId>
55             <artifactId>plexus-slf4j-logging</artifactId>
56         </dependency>
57
58         <dependency>
59             <groupId>junit</groupId>
60             <artifactId>junit</artifactId>
61             <scope>test</scope>
62         </dependency>
63     </dependencies>
64
65     <build>
66         <plugins>
67             <plugin>
68                 <artifactId>maven-jar-plugin</artifactId>
69                 <configuration>
70                     <archive>
71                         <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
72                     </archive>
73                 </configuration>
74             </plugin>
75             <plugin>
76                 <groupId>org.apache.felix</groupId>
77                 <artifactId>maven-bundle-plugin</artifactId>
78                 <extensions>true</extensions>
79                 <configuration>
80                     <instructions>
81                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
82                     </instructions>
83                 </configuration>
84             </plugin>
85             <plugin>
86                 <groupId>org.eclipse.xtend</groupId>
87                 <artifactId>xtend-maven-plugin</artifactId>
88             </plugin>
89             <plugin>
90                 <artifactId>maven-clean-plugin</artifactId>
91             </plugin>
92         </plugins>
93     </build>
94
95 </project>