e76e19d00889a1cedce1f451e33498e9941855da
[yangtools.git] / yang / yang-maven-plugin / pom.xml
1 <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">
2
3     <parent>
4         <groupId>org.opendaylight.yangtools</groupId>
5         <artifactId>yang</artifactId>
6         <version>0.5.8</version>
7     </parent>
8
9     <modelVersion>4.0.0</modelVersion>
10     <artifactId>yang-maven-plugin</artifactId>
11     <packaging>maven-plugin</packaging>
12     <description>
13         This plugin is a wrapper for "yang to source code" generation.
14         It can be configured by a set of third-party code generators and resource providers.
15         For further info see available goals.
16         Sample usage:
17
18         TODO: add sample usage when finished
19     </description>
20
21     <dependencies>
22         <dependency>
23             <groupId>org.apache.maven</groupId>
24             <artifactId>maven-core</artifactId>
25             <version>3.0.5</version>
26         </dependency>
27         <dependency>
28             <groupId>org.apache.maven</groupId>
29             <artifactId>maven-plugin-api</artifactId>
30             <version>3.0.5</version>
31         </dependency>
32         <dependency>
33             <groupId>org.apache.maven.plugin-tools</groupId>
34             <artifactId>maven-plugin-annotations</artifactId>
35             <version>3.2</version>
36             <scope>provided</scope>
37         </dependency>
38         <dependency>
39             <groupId>org.apache.maven</groupId>
40             <artifactId>maven-artifact</artifactId>
41             <version>2.0</version>
42         </dependency>
43         <dependency>
44             <groupId>com.googlecode.slf4j-maven-plugin-log</groupId>
45             <artifactId>slf4j-maven-plugin-log</artifactId>
46             <version>1.0.0</version>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>yang-parser-impl</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>yang-maven-plugin-spi</artifactId>
55         </dependency>
56
57         <dependency>
58             <groupId>commons-io</groupId>
59             <artifactId>commons-io</artifactId>
60             <version>2.4</version>
61         </dependency>
62
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>yang-maven-plugin-spi</artifactId>
66             <version>${project.version}</version>
67             <type>test-jar</type>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.mockito</groupId>
72             <artifactId>mockito-all</artifactId>
73             <version>1.8.4</version>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>junit</groupId>
78             <artifactId>junit</artifactId>
79             <scope>test</scope>
80         </dependency>
81     </dependencies>
82
83     <reporting>
84         <plugins>
85             <plugin>
86                 <groupId>org.apache.maven.plugins</groupId>
87                 <artifactId>maven-plugin-plugin</artifactId>
88                 <version>3.2</version>
89             </plugin>
90         </plugins>
91     </reporting>
92
93     <build>
94         <plugins>
95             <plugin>
96                 <groupId>org.apache.felix</groupId>
97                 <artifactId>maven-bundle-plugin</artifactId>
98                 <configuration>
99                     <supportedProjectTypes>
100                         <supportedProjectType>maven-plugin</supportedProjectType>
101                     </supportedProjectTypes>
102                 </configuration>
103             </plugin>
104             <plugin>
105                 <groupId>org.apache.maven.plugins</groupId>
106                 <artifactId>maven-plugin-plugin</artifactId>
107                 <version>3.2</version>
108                 <configuration>
109                     <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
110                 </configuration>
111                 <executions>
112                     <execution>
113                         <id>mojo-descriptor</id>
114                         <goals>
115                             <goal>descriptor</goal>
116                         </goals>
117                     </execution>
118                 </executions>
119             </plugin>
120         </plugins>
121     </build>
122
123 </project>