1c0fb14e2ba2d04a73a4ec06a306457d082fa803
[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.yangtools.thirdparty</groupId>
80             <artifactId>xtend-lib-osgi</artifactId>
81             <version>2.4.3</version>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.controller.samples</groupId>
85             <artifactId>sample-toaster</artifactId>
86             <version>1.0-SNAPSHOT</version>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.controller.samples</groupId>
90             <artifactId>sample-toaster-consumer</artifactId>
91             <version>1.0-SNAPSHOT</version>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller.samples</groupId>
95             <artifactId>sample-toaster-provider</artifactId>
96             <version>1.0-SNAPSHOT</version>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.controller</groupId>
100             <artifactId>sal-binding-broker-impl</artifactId>
101             <version>1.0-SNAPSHOT</version>
102         </dependency>
103         <dependency>
104             <groupId>org.ops4j.pax.exam</groupId>
105             <artifactId>pax-exam-container-native</artifactId>
106             <version>${exam.version}</version>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.ops4j.pax.exam</groupId>
111             <artifactId>pax-exam-junit4</artifactId>
112             <version>${exam.version}</version>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>org.ops4j.pax.exam</groupId>
117             <artifactId>pax-exam-link-mvn</artifactId>
118             <version>${exam.version}</version>
119             <scope>test</scope>
120         </dependency>
121         <dependency>
122             <groupId>equinoxSDK381</groupId>
123             <artifactId>org.eclipse.osgi</artifactId>
124             <version>3.8.1.v20120830-144521</version>
125             <scope>test</scope>
126         </dependency>
127         <dependency>
128             <groupId>org.slf4j</groupId>
129             <artifactId>log4j-over-slf4j</artifactId>
130             <version>1.7.2</version>
131         </dependency>
132         <dependency>
133             <groupId>ch.qos.logback</groupId>
134             <artifactId>logback-core</artifactId>
135             <version>1.0.9</version>
136         </dependency>
137         <dependency>
138             <groupId>ch.qos.logback</groupId>
139             <artifactId>logback-classic</artifactId>
140             <version>1.0.9</version>
141         </dependency>
142     </dependencies>
143 </project>