Bug 2561: Parser incorrectly allows usage of union in list
[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     <groupId>org.opendaylight.yangtools</groupId>
23     <version>0.7.0-SNAPSHOT</version>
24     <name>yangtools</name> <!-- Used by Sonar to set project name -->
25     <packaging>pom</packaging>
26
27     <scm>
28         <connection>scm:git:ssh://git.opendaylight.org:29418/yangtools.git</connection>
29         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/yangtools.git</developerConnection>
30         <url>https://wiki.opendaylight.org/view/YANG_Tools:Main</url>
31         <tag>HEAD</tag>
32     </scm>
33
34     <modules>
35         <module>code-generator</module>
36         <module>common</module>
37         <module>integration-test</module>
38         <module>model</module>
39         <module>restconf</module>
40         <module>websocket</module>
41         <module>yang</module>
42       <!-- module>third-party</module -->
43     </modules>
44
45     <profiles>
46       <profile>
47         <id>benchmarks</id>
48         <activation>
49           <activeByDefault>false</activeByDefault>
50         </activation>
51         <modules>
52           <module>benchmarks</module>
53         </modules>
54       </profile>
55     </profiles>
56
57     <build>
58         <pluginManagement>        
59             <plugins>
60                 <plugin>
61                  <groupId>org.apache.maven.plugins</groupId>
62                  <artifactId>maven-checkstyle-plugin</artifactId>
63                  <version>2.12</version>
64                  <configuration>
65                    <failOnViolation>false</failOnViolation>
66                    <configLocation>checkstyle-logging.xml</configLocation>
67                    <consoleOutput>true</consoleOutput>
68                    <includeTestSourceDirectory>true</includeTestSourceDirectory>
69                    <sourceDirectory>${project.basedir}</sourceDirectory>
70                    <includes>**\/*.java,**\/*.xml,**\/*.ini,**\/*.sh,**\/*.bat,**\/*.yang</includes>
71                    <excludes>**\/target\/,**\/bin\/,**\/target-ide\/,**\/src/main/yang-gen-config\/,**\/src/main/yang-gen-sal\/,**\/src/main/xtend-gen\/</excludes>
72                  </configuration>
73                  <dependencies>
74                    <dependency>
75                      <groupId>org.opendaylight.yangtools</groupId>
76                      <artifactId>checkstyle-logging</artifactId>
77                      <version>${project.version}</version>
78                    </dependency>
79                  </dependencies>
80                  <executions>
81                    <execution>
82                      <goals>
83                        <goal>check</goal>
84                      </goals>
85                    </execution>
86                  </executions>
87                </plugin>
88             </plugins>            
89         </pluginManagement>
90     </build>
91 </project>