Servicehandler Tests
[transportpce.git] / tests / stubmodels / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Orange and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.mdsal</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>0.12.3-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>transportpce-stubmodels</artifactId>
21   <version>0.2.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>transportpce-ordmodels</artifactId>
28       <version>${project.version}</version>
29     </dependency>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>transportpce-api</artifactId>
33       <version>${project.version}</version>
34     </dependency>
35   </dependencies>
36
37   <!--
38     Private references
39   -->
40   <build>
41      <plugins>
42        <plugin>
43          <groupId>org.apache.felix</groupId>
44          <artifactId>maven-bundle-plugin</artifactId>
45          <version>3.0.1</version>
46          <extensions>true</extensions>
47          <configuration>
48            <instructions>
49              <Include-Resource>{maven-resources},target/classes/LICENSE,META-INF/git.properties=-target/classes/META-INF/git.properties</Include-Resource>
50              <_exportcontents>
51                org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.transportpce.stubrenderer.rev170403.service.implementation.request.input,*
52              </_exportcontents>
53            </instructions>
54          </configuration>
55        </plugin>
56        <plugin>
57          <groupId>org.apache.maven.plugins</groupId>
58          <artifactId>maven-javadoc-plugin</artifactId>
59          <configuration>
60            <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
61            <excludePackageNames>*</excludePackageNames>
62          </configuration>
63        </plugin>
64      </plugins>
65   </build>
66
67   <reporting>
68      <plugins>
69       <plugin>
70         <groupId>org.apache.maven.plugins</groupId>
71         <artifactId>maven-javadoc-plugin</artifactId>
72         <configuration>
73           <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
74           <excludePackageNames>*</excludePackageNames>
75         </configuration>
76       </plugin>
77     </plugins>
78   </reporting>
79
80 </project>