[maven-release-plugin] prepare release yangtools-0.6.0
[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         <artifactId>binding-generator</artifactId>
14         <groupId>org.opendaylight.yangtools</groupId>
15         <version>0.6.0</version>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <artifactId>maven-sal-api-gen-plugin</artifactId>
20
21     <dependencies>
22         <dependency>
23             <groupId>org.opendaylight.yangtools</groupId>
24             <artifactId>yang-maven-plugin-spi</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.yangtools</groupId>
28             <artifactId>binding-model-api</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.yangtools</groupId>
32             <artifactId>binding-generator-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.yangtools</groupId>
36             <artifactId>binding-generator-impl</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.yangtools</groupId>
40             <artifactId>binding-java-api-generator</artifactId>
41         </dependency>
42
43         <dependency>
44             <groupId>org.opendaylight.yangtools</groupId>
45             <artifactId>yang-data-api</artifactId>
46         </dependency>
47
48         <dependency>
49             <groupId>org.sonatype.plexus</groupId>
50             <artifactId>plexus-build-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.codehaus.plexus</groupId>
54             <artifactId>plexus-slf4j-logging</artifactId>
55         </dependency>
56
57         <dependency>
58             <groupId>junit</groupId>
59             <artifactId>junit</artifactId>
60             <scope>test</scope>
61         </dependency>
62     </dependencies>
63
64     <build>
65         <plugins>
66             <plugin>
67                 <artifactId>maven-jar-plugin</artifactId>
68                 <configuration>
69                     <archive>
70                         <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
71                     </archive>
72                 </configuration>
73             </plugin>
74             <plugin>
75                 <groupId>org.apache.felix</groupId>
76                 <artifactId>maven-bundle-plugin</artifactId>
77                 <extensions>true</extensions>
78                 <configuration>
79                     <instructions>
80                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
81                     </instructions>
82                 </configuration>
83             </plugin>
84             <plugin>
85                 <groupId>org.eclipse.xtend</groupId>
86                 <artifactId>xtend-maven-plugin</artifactId>
87             </plugin>
88             <plugin>
89                 <artifactId>maven-clean-plugin</artifactId>
90             </plugin>
91         </plugins>
92     </build>
93
94 </project>