Bump versions to 10.0.2-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>12.0.1</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>10.0.2-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>10.0.2-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-plugin-api</artifactId>
59             <version>3.8.3</version>
60             <scope>provided</scope>
61         </dependency>
62         <dependency>
63             <groupId>org.apache.maven.plugin-tools</groupId>
64             <artifactId>maven-plugin-annotations</artifactId>
65             <version>3.6.4</version>
66             <scope>provided</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.apache.maven</groupId>
70             <artifactId>maven-artifact</artifactId>
71             <version>3.8.3</version>
72             <scope>provided</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.yangtools</groupId>
76             <artifactId>plugin-generator-api</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.yangtools</groupId>
80             <artifactId>yang-parser-impl</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.yangtools</groupId>
84             <artifactId>yang-test-util</artifactId>
85             <scope>test</scope>
86         </dependency>
87
88         <dependency>
89             <groupId>org.sonatype.plexus</groupId>
90             <artifactId>plexus-build-api</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.kohsuke.metainf-services</groupId>
94             <artifactId>metainf-services</artifactId>
95         </dependency>
96     </dependencies>
97
98     <reporting>
99         <plugins>
100             <plugin>
101                 <groupId>org.apache.maven.plugins</groupId>
102                 <artifactId>maven-plugin-plugin</artifactId>
103             </plugin>
104         </plugins>
105     </reporting>
106
107     <build>
108         <plugins>
109             <plugin>
110                 <groupId>org.apache.felix</groupId>
111                 <artifactId>maven-bundle-plugin</artifactId>
112                 <configuration>
113                     <supportedProjectTypes>
114                         <supportedProjectType>maven-plugin</supportedProjectType>
115                     </supportedProjectTypes>
116                 </configuration>
117             </plugin>
118             <plugin>
119                 <groupId>org.apache.maven.plugins</groupId>
120                 <artifactId>maven-plugin-plugin</artifactId>
121                 <configuration>
122                     <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
123                 </configuration>
124                 <executions>
125                     <execution>
126                         <id>mojo-descriptor</id>
127                         <goals>
128                             <goal>descriptor</goal>
129                         </goals>
130                     </execution>
131                 </executions>
132             </plugin>
133         </plugins>
134     </build>
135
136 </project>