Introduce top-level pom file.
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.yangtools</groupId>
14         <artifactId>binding-generator</artifactId>
15         <version>0.8.0-SNAPSHOT</version>
16     </parent>
17     <modelVersion>4.0.0</modelVersion>
18     <artifactId>maven-sal-api-gen-plugin</artifactId>
19
20     <dependencies>
21         <dependency>
22             <groupId>org.opendaylight.yangtools</groupId>
23             <artifactId>yang-maven-plugin-spi</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.yangtools</groupId>
27             <artifactId>binding-model-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.yangtools</groupId>
31             <artifactId>binding-generator-api</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.yangtools</groupId>
35             <artifactId>binding-generator-impl</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.yangtools</groupId>
39             <artifactId>binding-java-api-generator</artifactId>
40         </dependency>
41
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>yang-data-api</artifactId>
45         </dependency>
46
47         <dependency>
48             <groupId>org.apache.maven</groupId>
49             <artifactId>maven-core</artifactId>
50             <scope>provided</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.sonatype.plexus</groupId>
54             <artifactId>plexus-build-api</artifactId>
55             <scope>provided</scope>
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                         <Import-Package>
83                             !org.apache.maven.plugin.logging,
84                             !org.apache.maven.project
85                             *
86                         </Import-Package>
87                     </instructions>
88                 </configuration>
89             </plugin>
90             <plugin>
91                 <groupId>org.eclipse.xtend</groupId>
92                 <artifactId>xtend-maven-plugin</artifactId>
93             </plugin>
94         </plugins>
95     </build>
96
97 </project>