Bug 2366: Initial implementation of Statement Reactor
[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>third-party</module -->
41     </modules>
42
43     <profiles>
44       <profile>
45         <id>benchmarks</id>
46         <activation>
47           <activeByDefault>false</activeByDefault>
48         </activation>
49         <modules>
50           <module>benchmarks</module>
51         </modules>
52       </profile>
53     </profiles>
54
55     <build>
56         <pluginManagement>        
57             <plugins>
58                 <plugin>
59                  <groupId>org.apache.maven.plugins</groupId>
60                  <artifactId>maven-checkstyle-plugin</artifactId>
61                  <configuration>
62                    <failOnViolation>false</failOnViolation>
63                    <configLocation>checkstyle-logging.xml</configLocation>
64                    <consoleOutput>true</consoleOutput>
65                    <includeTestSourceDirectory>true</includeTestSourceDirectory>
66                    <sourceDirectory>${project.basedir}</sourceDirectory>
67                    <includes>**\/*.java,**\/*.xml,**\/*.ini,**\/*.sh,**\/*.bat,**\/*.yang</includes>
68                    <excludes>**\/target\/,**\/bin\/,**\/target-ide\/,**\/src/main/yang-gen-config\/,**\/src/main/yang-gen-sal\/,**\/src/main/xtend-gen\/</excludes>
69                  </configuration>
70                  <dependencies>
71                    <dependency>
72                      <groupId>org.opendaylight.yangtools</groupId>
73                      <artifactId>checkstyle-logging</artifactId>
74                      <version>${project.version}</version>
75                    </dependency>
76                  </dependencies>
77                  <executions>
78                    <execution>
79                      <goals>
80                        <goal>check</goal>
81                      </goals>
82                    </execution>
83                  </executions>
84                </plugin>
85             </plugins>            
86         </pluginManagement>
87     </build>
88 </project>