Bump versions to 13.0.6-SNAPSHOT
[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.1.2</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.6-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     <properties>
38         <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
39         <doclint>all,-missing</doclint>
40     </properties>
41
42     <dependencyManagement>
43         <dependencies>
44             <dependency>
45                 <groupId>org.opendaylight.yangtools</groupId>
46                 <artifactId>yangtools-artifacts</artifactId>
47                 <version>13.0.6-SNAPSHOT</version>
48                 <scope>import</scope>
49                 <type>pom</type>
50             </dependency>
51         </dependencies>
52     </dependencyManagement>
53
54     <dependencies>
55         <dependency>
56             <groupId>org.apache.maven</groupId>
57             <artifactId>maven-core</artifactId>
58             <version>3.8.3</version>
59             <scope>provided</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.apache.maven</groupId>
63             <artifactId>maven-model</artifactId>
64             <version>3.8.3</version>
65             <scope>provided</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.apache.maven</groupId>
69             <artifactId>maven-plugin-api</artifactId>
70             <version>3.8.3</version>
71             <scope>provided</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.apache.maven.plugin-tools</groupId>
75             <artifactId>maven-plugin-annotations</artifactId>
76             <version>3.6.4</version>
77             <scope>provided</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.apache.maven</groupId>
81             <artifactId>maven-artifact</artifactId>
82             <version>3.8.3</version>
83             <scope>provided</scope>
84         </dependency>
85
86         <dependency>
87             <groupId>com.github.spotbugs</groupId>
88             <artifactId>spotbugs-annotations</artifactId>
89             <optional>true</optional>
90         </dependency>
91         <dependency>
92             <groupId>com.google.guava</groupId>
93             <artifactId>guava</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.eclipse.jdt</groupId>
97             <artifactId>org.eclipse.jdt.annotation</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.kohsuke.metainf-services</groupId>
101             <artifactId>metainf-services</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.yangtools</groupId>
105             <artifactId>concepts</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.yangtools</groupId>
109             <artifactId>plugin-generator-api</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.yangtools</groupId>
113             <artifactId>yang-common</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>org.opendaylight.yangtools</groupId>
117             <artifactId>yang-model-api</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>org.opendaylight.yangtools</groupId>
121             <artifactId>yang-model-spi</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.yangtools</groupId>
125             <artifactId>yang-parser-api</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>org.opendaylight.yangtools</groupId>
129             <artifactId>yang-parser-rfc7950</artifactId>
130         </dependency>
131         <dependency>
132             <groupId>org.sonatype.plexus</groupId>
133             <artifactId>plexus-build-api</artifactId>
134         </dependency>
135
136         <dependency>
137             <groupId>org.opendaylight.yangtools</groupId>
138             <artifactId>yang-parser-impl</artifactId>
139             <scope>runtime</scope>
140         </dependency>
141
142         <dependency>
143             <groupId>org.opendaylight.yangtools</groupId>
144             <artifactId>yang-test-util</artifactId>
145             <scope>test</scope>
146         </dependency>
147     </dependencies>
148
149     <reporting>
150         <plugins>
151             <plugin>
152                 <groupId>org.apache.maven.plugins</groupId>
153                 <artifactId>maven-plugin-plugin</artifactId>
154             </plugin>
155         </plugins>
156     </reporting>
157
158     <build>
159         <plugins>
160             <plugin>
161                 <groupId>org.apache.felix</groupId>
162                 <artifactId>maven-bundle-plugin</artifactId>
163                 <configuration>
164                     <supportedProjectTypes>
165                         <supportedProjectType>maven-plugin</supportedProjectType>
166                     </supportedProjectTypes>
167                 </configuration>
168             </plugin>
169             <plugin>
170                 <groupId>org.apache.maven.plugins</groupId>
171                 <artifactId>maven-plugin-plugin</artifactId>
172                 <configuration>
173                     <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
174                 </configuration>
175                 <executions>
176                     <execution>
177                         <id>mojo-descriptor</id>
178                         <goals>
179                             <goal>descriptor</goal>
180                         </goals>
181                     </execution>
182                 </executions>
183             </plugin>
184         </plugins>
185     </build>
186
187 </project>