Bump versions to 13.0.6-SNAPSHOT
[yangtools.git] / plugin / plugin-generator-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2020 PANTHEON.tech, s.r.o. 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     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.yangtools</groupId>
14         <artifactId>bnd-parent</artifactId>
15         <version>13.0.6-SNAPSHOT</version>
16         <relativePath>../../bnd-parent</relativePath>
17     </parent>
18
19     <artifactId>plugin-generator-api</artifactId>
20     <packaging>jar</packaging>
21     <name>${project.artifactId}</name>
22     <description>YANG Generator Plugin API</description>
23
24     <properties>
25         <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
26         <doclint>all,-missing</doclint>
27     </properties>
28
29     <dependencies>
30         <dependency>
31             <groupId>com.google.guava</groupId>
32             <artifactId>guava</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.eclipse.jdt</groupId>
36             <artifactId>org.eclipse.jdt.annotation</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.yangtools</groupId>
40             <artifactId>concepts</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>yang-model-api</artifactId>
45         </dependency>
46
47         <dependency>
48             <groupId>org.kohsuke.metainf-services</groupId>
49             <artifactId>metainf-services</artifactId>
50             <optional>true</optional>
51             <scope>test</scope>
52         </dependency>
53     </dependencies>
54
55     <build>
56         <plugins>
57             <plugin>
58                 <artifactId>maven-jar-plugin</artifactId>
59                 <executions>
60                     <execution>
61                         <phase>package</phase>
62                         <goals>
63                             <goal>test-jar</goal>
64                         </goals>
65                     </execution>
66                 </executions>
67             </plugin>
68             <plugin>
69                 <artifactId>maven-source-plugin</artifactId>
70                 <executions>
71                     <execution>
72                         <goals>
73                             <goal>test-jar-no-fork</goal>
74                         </goals>
75                     </execution>
76                 </executions>
77             </plugin>
78         </plugins>
79     </build>
80 </project>