Bump odlparent to 13.0.0
[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.0</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>11.0.0-SNAPSHOT</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>11.0.0-SNAPSHOT</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.google.guava</groupId>
83             <artifactId>guava</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>com.github.spotbugs</groupId>
87             <artifactId>spotbugs-annotations</artifactId>
88             <optional>true</optional>
89         </dependency>
90         <dependency>
91             <groupId>org.kohsuke.metainf-services</groupId>
92             <artifactId>metainf-services</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.yangtools</groupId>
96             <artifactId>concepts</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.yangtools</groupId>
100             <artifactId>plugin-generator-api</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.yangtools</groupId>
104             <artifactId>yang-common</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.yangtools</groupId>
108             <artifactId>yang-model-api</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.yangtools</groupId>
112             <artifactId>yang-parser-api</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>org.opendaylight.yangtools</groupId>
116             <artifactId>yang-parser-rfc7950</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.yangtools</groupId>
120             <artifactId>yang-repo-api</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>org.sonatype.plexus</groupId>
124             <artifactId>plexus-build-api</artifactId>
125         </dependency>
126
127         <dependency>
128             <groupId>org.opendaylight.yangtools</groupId>
129             <artifactId>yang-parser-impl</artifactId>
130             <scope>runtime</scope>
131         </dependency>
132
133         <dependency>
134             <groupId>org.opendaylight.yangtools</groupId>
135             <artifactId>yang-test-util</artifactId>
136             <scope>test</scope>
137         </dependency>
138     </dependencies>
139
140     <reporting>
141         <plugins>
142             <plugin>
143                 <groupId>org.apache.maven.plugins</groupId>
144                 <artifactId>maven-plugin-plugin</artifactId>
145             </plugin>
146         </plugins>
147     </reporting>
148
149     <build>
150         <plugins>
151             <plugin>
152                 <groupId>org.apache.felix</groupId>
153                 <artifactId>maven-bundle-plugin</artifactId>
154                 <configuration>
155                     <supportedProjectTypes>
156                         <supportedProjectType>maven-plugin</supportedProjectType>
157                     </supportedProjectTypes>
158                 </configuration>
159             </plugin>
160             <plugin>
161                 <groupId>org.apache.maven.plugins</groupId>
162                 <artifactId>maven-plugin-plugin</artifactId>
163                 <configuration>
164                     <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
165                 </configuration>
166                 <executions>
167                     <execution>
168                         <id>mojo-descriptor</id>
169                         <goals>
170                             <goal>descriptor</goal>
171                         </goals>
172                     </execution>
173                 </executions>
174             </plugin>
175         </plugins>
176     </build>
177
178 </project>