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