Added sample provider and consumer for MD SAL
[controller.git] / opendaylight / sal / yang-prototype / sal / samples / toaster-provider / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         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                 <artifactId>sal-samples</artifactId>
6                 <groupId>org.opendaylight.controller.samples</groupId>
7                 <version>1.0-SNAPSHOT</version>
8         </parent>
9         <artifactId>sample-toaster-provider</artifactId>
10         <packaging>bundle</packaging>
11
12
13         <build>
14                 <plugins>
15                         <plugin>
16                                 <groupId>org.apache.felix</groupId>
17                                 <artifactId>maven-bundle-plugin</artifactId>
18                                 <configuration>
19                                         <instructions>
20                                         <Bundle-Activator>org.opendaylight.controller.sample.toaster.provider.ToasterProvider</Bundle-Activator>
21                                         </instructions>
22                                 </configuration>
23                         </plugin>
24                 </plugins>
25         </build>
26
27         <dependencies>
28                 <dependency>
29                         <groupId>${project.groupId}</groupId>
30                         <artifactId>sample-toaster</artifactId>
31                         <version>${project.version}</version>
32                 </dependency>
33                 <dependency>
34                         <groupId>org.opendaylight.controller</groupId>
35                         <artifactId>sal-binding-api</artifactId>
36                         <version>1.0-SNAPSHOT</version>
37                 </dependency>
38                 <dependency>
39                         <groupId>org.opendaylight.controller</groupId>
40                         <artifactId>sal-common-util</artifactId>
41                         <version>1.0-SNAPSHOT</version>
42                 </dependency>
43         </dependencies>
44 </project>