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