Remove sal-binding-config from toaster poms
[controller.git] / opendaylight / md-sal / samples / toaster-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" 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     <groupId>org.opendaylight.mdsal</groupId>
6     <artifactId>binding-parent</artifactId>
7     <version>0.12.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller.samples</groupId>
12   <artifactId>sample-toaster-provider</artifactId>
13   <version>1.7.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <dependencyManagement>
17     <dependencies>
18       <dependency>
19         <groupId>org.opendaylight.controller</groupId>
20         <artifactId>mdsal-artifacts</artifactId>
21         <version>1.7.0-SNAPSHOT</version>
22         <type>pom</type>
23         <scope>import</scope>
24       </dependency>
25     </dependencies>
26   </dependencyManagement>
27
28   <dependencies>
29     <dependency>
30       <groupId>${project.groupId}</groupId>
31       <artifactId>sample-toaster</artifactId>
32       <version>${project.version}</version>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>sal-binding-api</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal-common-util</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.osgi</groupId>
44       <artifactId>org.osgi.core</artifactId>
45     </dependency>
46
47     <!-- dependencies to use AbstractDataBrokerTest -->
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>sal-binding-broker-impl</artifactId>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>sal-binding-broker-impl</artifactId>
56       <type>test-jar</type>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60         <artifactId>junit</artifactId>
61         <groupId>junit</groupId>
62         <scope>test</scope>
63     </dependency>
64     <!-- used to mock up classes -->
65      <dependency>
66       <groupId>org.mockito</groupId>
67       <artifactId>mockito-core</artifactId>
68       <scope>test</scope>
69     </dependency>
70
71     <dependency>
72       <groupId>com.google.guava</groupId>
73       <artifactId>guava</artifactId>
74     </dependency>
75   </dependencies>
76
77   <build>
78     <plugins>
79       <plugin>
80          <groupId>org.apache.maven.plugins</groupId>
81          <artifactId>maven-checkstyle-plugin</artifactId>
82          <configuration>
83            <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
84          </configuration>
85       </plugin>
86       <plugin>
87         <groupId>org.codehaus.mojo</groupId>
88         <artifactId>findbugs-maven-plugin</artifactId>
89         <configuration>
90           <failOnError>true</failOnError>
91         </configuration>
92       </plugin>
93     </plugins>
94   </build>
95
96   <scm>
97     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
98     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
99     <tag>HEAD</tag>
100     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
101   </scm>
102 </project>