Set root pom.xml <name> for Sonar
[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         <module>binding-parent</module>
36     </modules>
37
38     <build>
39         <pluginManagement>
40             <plugins>
41                 <plugin>
42                     <groupId>org.apache.felix</groupId>
43                     <artifactId>maven-bundle-plugin</artifactId>
44                     <version>${maven.bundle.version}</version>
45                     <extensions>true</extensions>
46                     <executions>
47                         <execution>
48                             <id>bundle-manifest</id>
49                             <phase>process-classes</phase>
50                             <goals>
51                                 <goal>manifest</goal>
52                             </goals>
53                         </execution>
54                     </executions>
55                 </plugin>
56                 <plugin>
57                     <groupId>org.eclipse.m2e</groupId>
58                     <artifactId>lifecycle-mapping</artifactId>
59                     <version>1.0.0</version>
60                     <configuration>
61                         <lifecycleMappingMetadata>
62                             <pluginExecutions>
63                                 <pluginExecution>
64                                     <pluginExecutionFilter>
65                                         <groupId>org.apache.felix</groupId>
66                                         <artifactId>maven-bundle-plugin</artifactId>
67                                         <versionRange>[1.0,)</versionRange>
68                                         <goals>
69                                             <goal>manifest</goal>
70                                         </goals>
71                                     </pluginExecutionFilter>
72                                     <action>
73                                         <execute />
74                                     </action>
75                                 </pluginExecution>
76                             </pluginExecutions>
77                         </lifecycleMappingMetadata>
78                     </configuration>
79                 </plugin>
80             </plugins>
81         </pluginManagement>
82         <plugins>
83            <plugin>
84              <groupId>org.apache.maven.plugins</groupId>
85              <artifactId>maven-checkstyle-plugin</artifactId>
86            </plugin>
87         </plugins>
88     </build>
89
90 </project>