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