Merge "Make sure YangInstanceIdentifier.EMPTY is retained"
[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"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13     <parent>
14       <groupId>org.opendaylight.yangtools</groupId>
15       <artifactId>yangtools-parent</artifactId>
16       <version>0.7.0-SNAPSHOT</version>
17       <relativePath>common/parent</relativePath>
18     </parent>
19
20     <modelVersion>4.0.0</modelVersion>
21     <artifactId>yangtools-aggregator</artifactId>
22     <name>yangtools</name> <!-- Used by Sonar to set project name -->
23     <packaging>pom</packaging>
24
25     <scm>
26         <connection>scm:git:ssh://git.opendaylight.org:29418/yangtools.git</connection>
27         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/yangtools.git</developerConnection>
28         <url>https://wiki.opendaylight.org/view/YANG_Tools:Main</url>
29         <tag>HEAD</tag>
30     </scm>
31
32     <modules>
33         <module>code-generator</module>
34         <module>common</module>
35         <module>integration-test</module>
36         <module>model</module>
37         <module>restconf</module>
38         <module>websocket</module>
39         <module>yang</module>
40         <module>yang-validation-tool</module>
41       <!-- module>third-party</module -->
42     </modules>
43
44     <profiles>
45       <profile>
46         <id>benchmarks</id>
47         <activation>
48           <activeByDefault>false</activeByDefault>
49         </activation>
50         <modules>
51           <module>benchmarks</module>
52         </modules>
53       </profile>
54     </profiles>
55
56     <build>
57         <pluginManagement>        
58             <plugins>
59                 <plugin>
60                  <groupId>org.apache.maven.plugins</groupId>
61                  <artifactId>maven-checkstyle-plugin</artifactId>
62                  <configuration>
63                    <failOnViolation>false</failOnViolation>
64                    <configLocation>checkstyle-logging.xml</configLocation>
65                    <consoleOutput>true</consoleOutput>
66                    <includeTestSourceDirectory>true</includeTestSourceDirectory>
67                    <sourceDirectory>${project.basedir}</sourceDirectory>
68                    <includes>**\/*.java,**\/*.xml,**\/*.ini,**\/*.sh,**\/*.bat,**\/*.yang</includes>
69                    <excludes>**\/target\/,**\/bin\/,**\/target-ide\/,**\/src/main/yang-gen-config\/,**\/src/main/yang-gen-sal\/,**\/src/main/xtend-gen\/</excludes>
70                  </configuration>
71                  <dependencies>
72                    <dependency>
73                      <groupId>org.opendaylight.yangtools</groupId>
74                      <artifactId>checkstyle-logging</artifactId>
75                      <version>${project.version}</version>
76                    </dependency>
77                  </dependencies>
78                  <executions>
79                    <execution>
80                      <goals>
81                        <goal>check</goal>
82                      </goals>
83                    </execution>
84                  </executions>
85                </plugin>
86             </plugins>            
87         </pluginManagement>
88     </build>
89 </project>