consumer/provider restructure
[packetcable.git] / packetcable-provider / 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.controller.packetcable</groupId>
7                 <artifactId>packetcable-plugin</artifactId>
8                 <version>1.1-SNAPSHOT</version>
9         </parent>
10         <artifactId>packetcable-provider</artifactId>
11         <packaging>bundle</packaging>
12
13         <properties>
14                 <sal-binding-api.version>1.1-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>org.opendaylight.yangtools.model</groupId>
25                         <artifactId>ietf-inet-types</artifactId>
26                 </dependency>
27                 <dependency>
28                         <groupId>org.opendaylight.yangtools.model</groupId>
29                         <artifactId>ietf-yang-types</artifactId>
30                 </dependency>
31                 <dependency>
32                         <groupId>org.opendaylight.controller</groupId>
33                         <artifactId>config-api</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.opendaylight.controller</groupId>
45                         <artifactId>sal-common-util</artifactId>
46                 </dependency>
47                 <dependency>
48                         <groupId>org.osgi</groupId>
49                         <artifactId>org.osgi.core</artifactId>
50                 </dependency>
51         </dependencies>
52
53         <build>
54                 <plugins>
55                         <plugin>
56                                 <artifactId>maven-checkstyle-plugin</artifactId>
57                                 <configuration>
58                                   <skip>true</skip>
59                                 </configuration>
60                         </plugin>
61
62                         <plugin>
63                                 <groupId>org.apache.felix</groupId>
64                                 <artifactId>maven-bundle-plugin</artifactId>
65                                 <configuration>
66                                         <instructions>
67                                                 <Export-Package>org.opendaylight.controller.config.yang.toaster_provider,</Export-Package>
68                                                 <Import-Package>*</Import-Package>
69                                         </instructions>
70                                 </configuration>
71                         </plugin>
72                         <plugin>
73                                 <groupId>org.opendaylight.yangtools</groupId>
74                                 <artifactId>yang-maven-plugin</artifactId>
75                                 <executions>
76                                         <execution>
77                                                 <id>config</id>
78                                                 <goals>
79                                                         <goal>generate-sources</goal>
80                                                 </goals>
81                                                 <configuration>
82                                                         <codeGenerators>
83                                                                 <generator>
84                                                                         <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass>
85                                                                         <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
86                                                                         <additionalConfiguration>
87                                                                                 <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1>
88                                                                         </additionalConfiguration>
89                                                                 </generator>
90                                                                 <generator>
91                                                                         <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
92                                                                         <outputBaseDir>${salGeneratorPath}</outputBaseDir>
93                                                                 </generator>
94                                                         </codeGenerators>
95                                                         <inspectDependencies>true</inspectDependencies>
96                                                 </configuration>
97                                         </execution>
98                                 </executions>
99                         </plugin>
100                 </plugins>
101         </build>
102         <scm>
103                 <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
104                 <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
105                 <tag>HEAD</tag>
106                 <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
107         </scm>
108 </project>