Bug 2354: Fixed parsing of block comments between statement and argument
[yangtools.git] / code-generator / 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.yangtools</groupId>
14         <artifactId>yangtools-parent</artifactId>
15         <version>0.7.0-SNAPSHOT</version>
16         <relativePath>../common/parent</relativePath>
17     </parent>
18     <modelVersion>4.0.0</modelVersion>
19     <artifactId>binding-generator</artifactId>
20     <packaging>pom</packaging>
21     <name>${project.artifactId}</name>
22     <description>${project.artifactId}</description>
23
24     <modules>
25         <module>binding-model-api</module>
26         <module>binding-generator-api</module>
27         <module>binding-generator-spi</module>
28         <module>binding-generator-util</module>
29         <module>binding-generator-impl</module>
30         <module>binding-java-api-generator</module>
31         <module>binding-type-provider</module>
32         <module>maven-sal-api-gen-plugin</module>
33         <module>binding-test-model</module>
34         <module>binding-data-codec</module>
35     </modules>
36
37     <build>
38         <pluginManagement>
39             <plugins>
40                 <plugin>
41                     <groupId>org.apache.felix</groupId>
42                     <artifactId>maven-bundle-plugin</artifactId>
43                     <version>${maven.bundle.version}</version>
44                     <extensions>true</extensions>
45                     <executions>
46                         <execution>
47                             <id>bundle-manifest</id>
48                             <phase>process-classes</phase>
49                             <goals>
50                                 <goal>manifest</goal>
51                             </goals>
52                         </execution>
53                     </executions>
54                 </plugin>
55                 <plugin>
56                     <groupId>org.eclipse.m2e</groupId>
57                     <artifactId>lifecycle-mapping</artifactId>
58                     <version>1.0.0</version>
59                     <configuration>
60                         <lifecycleMappingMetadata>
61                             <pluginExecutions>
62                                 <pluginExecution>
63                                     <pluginExecutionFilter>
64                                         <groupId>org.apache.felix</groupId>
65                                         <artifactId>maven-bundle-plugin</artifactId>
66                                         <versionRange>[1.0,)</versionRange>
67                                         <goals>
68                                             <goal>manifest</goal>
69                                         </goals>
70                                     </pluginExecutionFilter>
71                                     <action>
72                                         <execute />
73                                     </action>
74                                 </pluginExecution>
75                             </pluginExecutions>
76                         </lifecycleMappingMetadata>
77                     </configuration>
78                 </plugin>
79             </plugins>
80         </pluginManagement>
81         <plugins>
82            <plugin>
83              <groupId>org.apache.maven.plugins</groupId>
84              <artifactId>maven-checkstyle-plugin</artifactId>
85            </plugin>
86         </plugins>
87     </build>
88
89 </project>