8f11537b9d216852eb4484e0a328e9da8710ea4b
[controller.git] / opendaylight / md-sal / messagebus-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Cisco Systems, Inc. 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
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.controller</groupId>
15     <artifactId>sal-parent</artifactId>
16     <version>1.4.0-SNAPSHOT</version>
17   </parent>
18
19   <artifactId>messagebus-config</artifactId>
20   <packaging>jar</packaging>
21   <description>Configuration files for message-bus</description>
22
23   <dependencies>
24     <dependency>
25       <groupId>org.opendaylight.controller</groupId>
26       <artifactId>config-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>messagebus-api</artifactId>
31       <version>${project.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>messagebus-impl</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38   </dependencies>
39
40   <build>
41     <plugins>
42         <plugin>
43         <groupId>org.codehaus.mojo</groupId>
44         <artifactId>build-helper-maven-plugin</artifactId>
45         <executions>
46           <execution>
47             <id>attach-artifacts</id>
48             <goals>
49               <goal>attach-artifact</goal>
50             </goals>
51             <phase>package</phase>
52             <configuration>
53               <artifacts>
54                 <artifact>
55                   <file>${project.build.directory}/classes/initial/05-message-bus.xml</file>
56                   <type>xml</type>
57                   <classifier>config</classifier>
58                 </artifact>
59               </artifacts>
60             </configuration>
61           </execution>
62         </executions>
63       </plugin>
64     </plugins>
65   </build>
66
67   <scm>
68       <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
69       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
70       <tag>HEAD</tag>
71       <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
72    </scm>
73 </project>