Release yangtools
[yangtools.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>9.0.15</version>
16       <relativePath/>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <groupId>org.opendaylight.yangtools</groupId>
21     <artifactId>yangtools-aggregator</artifactId>
22     <version>7.0.17</version>
23     <packaging>pom</packaging>
24     <name>yangtools</name> <!-- Used by Sonar to set project name -->
25     <description>
26         YANG Tools provides basic libraries for parsing YANG and YIN files, working with the resulting effective model,
27         and handling data complying to this model.
28     </description>
29
30     <scm>
31         <connection>scm:git:ssh://git.opendaylight.org:29418/yangtools.git</connection>
32         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/yangtools.git</developerConnection>
33         <url>https://wiki.opendaylight.org/view/YANG_Tools:Main</url>
34         <tag>HEAD</tag>
35     </scm>
36
37     <modules>
38         <module>artifacts</module>
39         <module>docs</module>
40         <module>features</module>
41
42         <module>benchmarks</module>
43         <module>bundle-parent</module>
44         <module>codec</module>
45         <module>common</module>
46         <module>data</module>
47         <module>model</module>
48         <module>parser</module>
49         <module>plugin</module>
50         <module>tools</module>
51         <module>xpath</module>
52
53         <module>yang</module>
54     </modules>
55
56     <properties>
57         <maven.deploy.skip>true</maven.deploy.skip>
58         <maven.install.skip>true</maven.install.skip>
59     </properties>
60
61     <profiles>
62         <profile>
63             <id>karaf</id>
64             <activation>
65                 <activeByDefault>true</activeByDefault>
66             </activation>
67
68             <modules>
69                 <module>karaf</module>
70             </modules>
71         </profile>
72         <profile>
73             <id>sonar-jacoco-aggregate</id>
74             <activation>
75                 <property>
76                     <name>odl.jacoco.aggregateFile</name>
77                 </property>
78             </activation>
79             <build>
80                 <plugins>
81                     <plugin>
82                         <groupId>org.jacoco</groupId>
83                         <artifactId>jacoco-maven-plugin</artifactId>
84                         <executions>
85                             <execution>
86                                 <id>merge</id>
87                                 <goals>
88                                     <goal>merge</goal>
89                                 </goals>
90                                 <phase>generate-resources</phase>
91                                 <configuration>
92                                     <destFile>${odl.jacoco.aggregateFile}</destFile>
93                                     <fileSets>
94                                         <fileSet>
95                                             <directory>${project.basedir}</directory>
96                                             <includes>
97                                                 <include>**/target/code-coverage/*.exec</include>
98                                             </includes>
99                                         </fileSet>
100                                     </fileSets>
101                                 </configuration>
102                             </execution>
103                         </executions>
104                     </plugin>
105                 </plugins>
106             </build>
107         </profile>
108     </profiles>
109 </project>