Do not use ClusteredDOMDataTreeChangeListener
[mdsal.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. 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
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>odlparent-lite</artifactId>
15         <version>13.0.10</version>
16         <relativePath/>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <groupId>org.opendaylight.mdsal</groupId>
21     <artifactId>mdsal-agreggator</artifactId>
22     <version>13.0.1-SNAPSHOT</version>
23     <packaging>pom</packaging>
24     <name>md-sal</name> <!-- Used by Sonar to set project name -->
25     <description>
26         Model-Driven Service Abstraction Layer. Provides YANG-centric code generation tools and supporting
27         APIs to allow building applications which operate on and interchange YANG-modeled data.
28     </description>
29
30     <modules>
31         <module>artifacts</module>
32         <module>bnd-parent</module>
33         <module>bundle-parent</module>
34         <module>common</module>
35         <module>docs</module>
36         <module>features</module>
37         <module>karaf</module>
38         <module>dom</module>
39         <module>binding</module>
40         <module>model</module>
41         <module>entityownership</module>
42         <module>singleton-service</module>
43         <module>trace</module>
44
45         <!-- Netty integrations -->
46         <module>netty</module>
47
48         <!-- Data store replicators -->
49         <module>replicate</module>
50
51         <!-- IETF YANG (Module) Library -->
52         <module>yanglib</module>
53     </modules>
54
55     <properties>
56         <maven.deploy.skip>true</maven.deploy.skip>
57         <maven.install.skip>true</maven.install.skip>
58     </properties>
59
60     <profiles>
61         <profile>
62             <id>sonar-jacoco-aggregate</id>
63             <activation>
64                 <property>
65                     <name>odl.jacoco.aggregateFile</name>
66                 </property>
67             </activation>
68             <build>
69                 <plugins>
70                     <plugin>
71                         <groupId>org.jacoco</groupId>
72                         <artifactId>jacoco-maven-plugin</artifactId>
73                         <executions>
74                             <execution>
75                                 <id>merge</id>
76                                 <goals>
77                                     <goal>merge</goal>
78                                 </goals>
79                                 <phase>generate-resources</phase>
80                                 <configuration>
81                                     <destFile>${odl.jacoco.aggregateFile}</destFile>
82                                     <fileSets>
83                                         <fileSet>
84                                             <directory>${project.basedir}</directory>
85                                             <includes>
86                                                 <include>**/target/code-coverage/*.exec</include>
87                                             </includes>
88                                         </fileSet>
89                                     </fileSets>
90                                 </configuration>
91                             </execution>
92                         </executions>
93                     </plugin>
94                 </plugins>
95             </build>
96         </profile>
97     </profiles>
98
99     <scm>
100         <connection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</connection>
101         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
102         <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
103         <tag>HEAD</tag>
104     </scm>
105 </project>