Release yangtools
[yangtools.git] / plugin / yang-maven-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.odlparent</groupId>
14         <artifactId>odlparent</artifactId>
15         <version>13.0.10</version>
16         <relativePath/>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <groupId>org.opendaylight.yangtools</groupId>
21     <artifactId>yang-maven-plugin</artifactId>
22     <version>13.0.0</version>
23     <packaging>maven-plugin</packaging>
24     <description>
25         This plugin is a wrapper for "yang to source code" generation.
26         It can be configured by a set of third-party code generators and resource providers.
27         For further info see available goals.
28         Sample usage:
29
30         TODO: add sample usage when finished
31     </description>
32
33     <prerequisites>
34         <maven>3.8.3</maven>
35     </prerequisites>
36
37     <dependencyManagement>
38         <dependencies>
39             <dependency>
40                 <groupId>org.opendaylight.yangtools</groupId>
41                 <artifactId>yangtools-artifacts</artifactId>
42                 <version>13.0.0</version>
43                 <scope>import</scope>
44                 <type>pom</type>
45             </dependency>
46         </dependencies>
47     </dependencyManagement>
48
49     <dependencies>
50         <dependency>
51             <groupId>org.apache.maven</groupId>
52             <artifactId>maven-core</artifactId>
53             <version>3.8.3</version>
54             <scope>provided</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.apache.maven</groupId>
58             <artifactId>maven-model</artifactId>
59             <version>3.8.3</version>
60             <scope>provided</scope>
61         </dependency>
62         <dependency>
63             <groupId>org.apache.maven</groupId>
64             <artifactId>maven-plugin-api</artifactId>
65             <version>3.8.3</version>
66             <scope>provided</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.apache.maven.plugin-tools</groupId>
70             <artifactId>maven-plugin-annotations</artifactId>
71             <version>3.6.4</version>
72             <scope>provided</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.apache.maven</groupId>
76             <artifactId>maven-artifact</artifactId>
77             <version>3.8.3</version>
78             <scope>provided</scope>
79         </dependency>
80
81         <dependency>
82             <groupId>com.github.spotbugs</groupId>
83             <artifactId>spotbugs-annotations</artifactId>
84             <optional>true</optional>
85         </dependency>
86         <dependency>
87             <groupId>com.google.guava</groupId>
88             <artifactId>guava</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.eclipse.jdt</groupId>
92             <artifactId>org.eclipse.jdt.annotation</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.kohsuke.metainf-services</groupId>
96             <artifactId>metainf-services</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.yangtools</groupId>
100             <artifactId>concepts</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.yangtools</groupId>
104             <artifactId>plugin-generator-api</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.yangtools</groupId>
108             <artifactId>yang-common</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.yangtools</groupId>
112             <artifactId>yang-model-api</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>org.opendaylight.yangtools</groupId>
116             <artifactId>yang-model-spi</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.yangtools</groupId>
120             <artifactId>yang-parser-api</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.yangtools</groupId>
124             <artifactId>yang-parser-rfc7950</artifactId>
125         </dependency>
126         <dependency>
127             <groupId>org.sonatype.plexus</groupId>
128             <artifactId>plexus-build-api</artifactId>
129         </dependency>
130
131         <dependency>
132             <groupId>org.opendaylight.yangtools</groupId>
133             <artifactId>yang-parser-impl</artifactId>
134             <scope>runtime</scope>
135         </dependency>
136
137         <dependency>
138             <groupId>org.opendaylight.yangtools</groupId>
139             <artifactId>yang-test-util</artifactId>
140             <scope>test</scope>
141         </dependency>
142     </dependencies>
143
144     <reporting>
145         <plugins>
146             <plugin>
147                 <groupId>org.apache.maven.plugins</groupId>
148                 <artifactId>maven-plugin-plugin</artifactId>
149             </plugin>
150         </plugins>
151     </reporting>
152
153     <build>
154         <plugins>
155             <plugin>
156                 <groupId>org.apache.felix</groupId>
157                 <artifactId>maven-bundle-plugin</artifactId>
158                 <configuration>
159                     <supportedProjectTypes>
160                         <supportedProjectType>maven-plugin</supportedProjectType>
161                     </supportedProjectTypes>
162                 </configuration>
163             </plugin>
164             <plugin>
165                 <groupId>org.apache.maven.plugins</groupId>
166                 <artifactId>maven-plugin-plugin</artifactId>
167                 <configuration>
168                     <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
169                 </configuration>
170                 <executions>
171                     <execution>
172                         <id>mojo-descriptor</id>
173                         <goals>
174                             <goal>descriptor</goal>
175                         </goals>
176                     </execution>
177                 </executions>
178             </plugin>
179         </plugins>
180     </build>
181
182 </project>