Bump versions to 2.0.24-SNAPSHOT
[yangtools.git] / yang / 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>3.1.9</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>2.0.24-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     <dependencyManagement>
34         <dependencies>
35             <dependency>
36                 <groupId>org.opendaylight.yangtools</groupId>
37                 <artifactId>yangtools-artifacts</artifactId>
38                 <version>2.0.24-SNAPSHOT</version>
39                 <scope>import</scope>
40                 <type>pom</type>
41             </dependency>
42         </dependencies>
43     </dependencyManagement>
44
45     <dependencies>
46         <dependency>
47             <groupId>org.apache.maven</groupId>
48             <artifactId>maven-core</artifactId>
49             <version>3.3.9</version>
50         </dependency>
51         <dependency>
52             <groupId>org.apache.maven</groupId>
53             <artifactId>maven-plugin-api</artifactId>
54             <version>3.3.9</version>
55         </dependency>
56         <dependency>
57             <groupId>org.apache.maven.plugin-tools</groupId>
58             <artifactId>maven-plugin-annotations</artifactId>
59             <version>3.4</version>
60             <scope>provided</scope>
61         </dependency>
62         <dependency>
63             <groupId>org.apache.maven</groupId>
64             <artifactId>maven-artifact</artifactId>
65             <version>3.3.9</version>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>yang-parser-impl</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>yang-test-util</artifactId>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>yang-maven-plugin-spi</artifactId>
79         </dependency>
80
81         <dependency>
82             <groupId>org.sonatype.plexus</groupId>
83             <artifactId>plexus-build-api</artifactId>
84         </dependency>
85
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>yang-maven-plugin-spi</artifactId>
89             <version>${project.version}</version>
90             <type>test-jar</type>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.mockito</groupId>
95             <artifactId>mockito-core</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>junit</groupId>
99             <artifactId>junit</artifactId>
100         </dependency>
101     </dependencies>
102
103     <reporting>
104         <plugins>
105             <plugin>
106                 <groupId>org.apache.maven.plugins</groupId>
107                 <artifactId>maven-plugin-plugin</artifactId>
108             </plugin>
109         </plugins>
110     </reporting>
111
112     <build>
113         <plugins>
114             <plugin>
115                 <groupId>org.apache.felix</groupId>
116                 <artifactId>maven-bundle-plugin</artifactId>
117                 <configuration>
118                     <supportedProjectTypes>
119                         <supportedProjectType>maven-plugin</supportedProjectType>
120                     </supportedProjectTypes>
121                 </configuration>
122             </plugin>
123             <plugin>
124                 <groupId>org.apache.maven.plugins</groupId>
125                 <artifactId>maven-plugin-plugin</artifactId>
126                 <configuration>
127                     <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
128                 </configuration>
129                 <executions>
130                     <execution>
131                         <id>mojo-descriptor</id>
132                         <goals>
133                             <goal>descriptor</goal>
134                         </goals>
135                     </execution>
136                 </executions>
137             </plugin>
138                         <plugin>
139                                 <groupId>org.apache.maven.plugins</groupId>
140                                 <artifactId>maven-checkstyle-plugin</artifactId>
141                                 <configuration>
142                                         <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
143                                 </configuration>
144                         </plugin>
145         </plugins>
146     </build>
147
148 </project>