Bug 4079: Unable to compile pattern defined in module
[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.8.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>common</module>
34         <module>yang</module>
35         <module>websocket</module>
36         <module>yang-validation-tool</module>
37     </modules>
38
39     <profiles>
40       <profile>
41         <id>benchmarks</id>
42         <activation>
43           <activeByDefault>false</activeByDefault>
44         </activation>
45         <modules>
46           <module>benchmarks</module>
47         </modules>
48       </profile>
49     </profiles>
50
51     <build>
52         <pluginManagement>        
53             <plugins>
54                 <plugin>
55                  <groupId>org.apache.maven.plugins</groupId>
56                  <artifactId>maven-checkstyle-plugin</artifactId>
57                  <configuration>
58                    <failOnViolation>false</failOnViolation>
59                    <configLocation>checkstyle-logging.xml</configLocation>
60                    <consoleOutput>true</consoleOutput>
61                    <includeTestSourceDirectory>true</includeTestSourceDirectory>
62                    <sourceDirectory>${project.basedir}</sourceDirectory>
63                    <includes>**\/*.java,**\/*.xml,**\/*.ini,**\/*.sh,**\/*.bat,**\/*.yang</includes>
64                    <excludes>**\/target\/,**\/bin\/,**\/target-ide\/,**\/src/main/yang-gen-config\/,**\/src/main/yang-gen-sal\/,**\/src/main/xtend-gen\/</excludes>
65                  </configuration>
66                  <dependencies>
67                    <dependency>
68                      <groupId>org.opendaylight.yangtools</groupId>
69                      <artifactId>checkstyle-logging</artifactId>
70                      <version>${project.version}</version>
71                    </dependency>
72                  </dependencies>
73                  <executions>
74                    <execution>
75                      <goals>
76                        <goal>check</goal>
77                      </goals>
78                    </execution>
79                  </executions>
80                </plugin>
81             </plugins>            
82         </pluginManagement>
83     </build>
84 </project>