Release mdsal
[mdsal.git] / trace / mdsal-trace-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2016 Red Hat 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     <parent>
12         <groupId>org.opendaylight.mdsal</groupId>
13         <artifactId>binding-parent</artifactId>
14         <version>13.0.1</version>
15         <relativePath>../../binding/binding-parent</relativePath>
16     </parent>
17
18     <artifactId>mdsal-trace-api</artifactId>
19     <packaging>bundle</packaging>
20
21     <dependencies>
22         <dependency>
23             <groupId>org.opendaylight.mdsal</groupId>
24             <artifactId>mdsal-dom-api</artifactId>
25         </dependency>
26     </dependencies>
27
28     <build>
29         <plugins>
30             <plugin>
31                 <groupId>org.codehaus.mojo</groupId>
32                 <artifactId>build-helper-maven-plugin</artifactId>
33                 <executions>
34                     <execution>
35                         <id>attach-artifacts</id>
36                         <goals>
37                             <goal>attach-artifact</goal>
38                         </goals>
39                         <phase>package</phase>
40                         <configuration>
41                             <artifacts>
42                                 <artifact>
43                                     <file>${project.build.directory}/classes/initial/mdsaltrace_config.xml</file>
44                                     <type>xml</type>
45                                     <classifier>config</classifier>
46                                 </artifact>
47                             </artifacts>
48                         </configuration>
49                     </execution>
50                 </executions>
51             </plugin>
52         </plugins>
53     </build>
54 </project>