Change the group id
[packetcable.git] / packetcable-consumer / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.packetcable</groupId>
6     <artifactId>packetcable</artifactId>
7     <version>1.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>packetcable-consumer</artifactId>
10   <packaging>bundle</packaging>
11
12   <properties>
13     <sal-binding-api.version>1.1-SNAPSHOT</sal-binding-api.version>
14   </properties>
15
16   <dependencies>
17     <dependency>
18       <groupId>${project.groupId}</groupId>
19       <artifactId>packetcable-model</artifactId>
20       <version>${project.version}</version>
21     </dependency>
22     <dependency>
23                         <groupId>${project.groupId}</groupId>
24                         <artifactId>packetcable-driver</artifactId>
25                         <version>${project.version}</version>
26                 </dependency>
27         <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>config-api</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal-common-util</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>sal-binding-api</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>sal-binding-config</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.osgi</groupId>
45       <artifactId>org.osgi.core</artifactId>
46     </dependency>
47   </dependencies>
48
49   <build>
50     <plugins>
51       <plugin>
52         <artifactId>maven-checkstyle-plugin</artifactId>
53         <configuration>
54           <skip>true</skip>
55         </configuration>
56       </plugin>
57       <plugin>
58         <groupId>org.apache.felix</groupId>
59         <artifactId>maven-bundle-plugin</artifactId>
60       </plugin>
61       <plugin>
62         <groupId>org.opendaylight.yangtools</groupId>
63         <artifactId>yang-maven-plugin</artifactId>
64         <executions>
65           <execution>
66             <id>config</id>
67             <goals>
68               <goal>generate-sources</goal>
69             </goals>
70             <configuration>
71               <codeGenerators>
72                 <generator>
73                   <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass>
74                   <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
75                   <additionalConfiguration>
76                     <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1>
77                   </additionalConfiguration>
78                 </generator>
79                 <generator>
80                   <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
81                   <outputBaseDir>${salGeneratorPath}</outputBaseDir>
82                 </generator>
83               </codeGenerators>
84               <inspectDependencies>true</inspectDependencies>
85             </configuration>
86           </execution>
87         </executions>
88       </plugin>
89
90     </plugins>
91   </build>
92   <scm>
93     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
94     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
95     <tag>HEAD</tag>
96     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
97   </scm>
98 </project>