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