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