Moved MD SAL from sal/yang-prototype to md-sal
[controller.git] / opendaylight / md-sal / samples / toaster-it / 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-it</artifactId>
10     <scm>
11       <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13       <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
14     </scm>
15
16         <properties>
17                 <exam.version>3.0.0</exam.version>
18                 <url.version>1.5.0</url.version>
19         </properties>
20
21         <build>
22                 <plugins>
23                         <plugin>
24                                 <groupId>org.ops4j.pax.exam</groupId>
25                                 <artifactId>maven-paxexam-plugin</artifactId>
26                                 <version>1.2.4</version>
27                                 <executions>
28                                         <execution>
29                                                 <id>generate-config</id>
30                                                 <goals>
31                                                         <goal>generate-depends-file</goal>
32                                                 </goals>
33                                         </execution>
34                                 </executions>
35                         </plugin>
36                 </plugins>
37                 <pluginManagement>
38                         <plugins>
39                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
40                                         only. It has no influence on the Maven build itself. -->
41                                 <plugin>
42                                         <groupId>org.eclipse.m2e</groupId>
43                                         <artifactId>lifecycle-mapping</artifactId>
44                                         <version>1.0.0</version>
45                                         <configuration>
46                                                 <lifecycleMappingMetadata>
47                                                         <pluginExecutions>
48                                                                 <pluginExecution>
49                                                                         <pluginExecutionFilter>
50                                                                                 <groupId>
51                                                                                         org.ops4j.pax.exam
52                                                                                 </groupId>
53                                                                                 <artifactId>
54                                                                                         maven-paxexam-plugin
55                                                                                 </artifactId>
56                                                                                 <versionRange>
57                                                                                         [1.2.4,)
58                                                                                 </versionRange>
59                                                                                 <goals>
60                                                                                         <goal>
61                                                                                                 generate-depends-file
62                                                                                         </goal>
63                                                                                 </goals>
64                                                                         </pluginExecutionFilter>
65                                                                         <action>
66                                                                                 <ignore></ignore>
67                                                                         </action>
68                                                                 </pluginExecution>
69                                                         </pluginExecutions>
70                                                 </lifecycleMappingMetadata>
71                                         </configuration>
72                                 </plugin>
73                         </plugins>
74                 </pluginManagement>
75         </build>
76
77         <dependencies>
78                 <dependency>
79                         <groupId>org.opendaylight.controller.samples</groupId>
80                         <artifactId>sample-toaster</artifactId>
81                         <version>1.0-SNAPSHOT</version>
82                 </dependency>
83                 <dependency>
84                         <groupId>org.opendaylight.controller.samples</groupId>
85                         <artifactId>sample-toaster-consumer</artifactId>
86                         <version>1.0-SNAPSHOT</version>
87                 </dependency>
88                 <dependency>
89                         <groupId>org.opendaylight.controller.samples</groupId>
90                         <artifactId>sample-toaster-provider</artifactId>
91                         <version>1.0-SNAPSHOT</version>
92                 </dependency>
93                 <dependency>
94                         <groupId>org.opendaylight.controller</groupId>
95                         <artifactId>sal-binding-broker-impl</artifactId>
96                         <version>1.0-SNAPSHOT</version>
97                 </dependency>
98                 <dependency>
99                         <groupId>org.ops4j.pax.exam</groupId>
100                         <artifactId>pax-exam-container-native</artifactId>
101                         <version>${exam.version}</version>
102                         <scope>test</scope>
103                 </dependency>
104                 <dependency>
105                         <groupId>org.ops4j.pax.exam</groupId>
106                         <artifactId>pax-exam-junit4</artifactId>
107                         <version>${exam.version}</version>
108                         <scope>test</scope>
109                 </dependency>
110                 <dependency>
111                         <groupId>org.ops4j.pax.exam</groupId>
112                         <artifactId>pax-exam-link-mvn</artifactId>
113                         <version>${exam.version}</version>
114                         <scope>test</scope>
115                 </dependency>
116                 <dependency>
117                         <groupId>equinoxSDK381</groupId>
118                         <artifactId>org.eclipse.osgi</artifactId>
119                         <version>3.8.1.v20120830-144521</version>
120                         <scope>test</scope>
121                 </dependency>
122                 <dependency>
123                         <groupId>org.slf4j</groupId>
124                         <artifactId>log4j-over-slf4j</artifactId>
125                         <version>1.7.2</version>
126                 </dependency>
127                 <dependency>
128                         <groupId>ch.qos.logback</groupId>
129                         <artifactId>logback-core</artifactId>
130                         <version>1.0.9</version>
131                 </dependency>
132                 <dependency>
133                         <groupId>ch.qos.logback</groupId>
134                         <artifactId>logback-classic</artifactId>
135                         <version>1.0.9</version>
136                 </dependency>
137         </dependencies>
138 </project>