Merge "BUG 720 - YANG leaf as JSON input *<*:* couldn't be saved"
[controller.git] / opendaylight / md-sal / sal-binding-it / 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.controller</groupId>
6     <artifactId>sal-parent</artifactId>
7     <version>1.2.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-binding-it</artifactId>
10
11   <dependencies>
12     <dependency>
13       <groupId>ch.qos.logback</groupId>
14       <artifactId>logback-classic</artifactId>
15     </dependency>
16     <dependency>
17       <groupId>ch.qos.logback</groupId>
18       <artifactId>logback-core</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>equinoxSDK381</groupId>
22       <artifactId>org.eclipse.osgi</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.eclipse.persistence</groupId>
26       <artifactId>org.eclipse.persistence.core</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.eclipse.persistence</groupId>
30       <artifactId>org.eclipse.persistence.moxy</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.mockito</groupId>
34       <artifactId>mockito-all</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.yangtools</groupId>
38       <artifactId>object-cache-guava</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>config-manager</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>config-netconf-connector</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>config-persister-file-xml-adapter</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>config-persister-impl</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>logback-config</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>netconf-client</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>netconf-impl</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>netconf-monitoring</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal-binding-broker-impl</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.yangtools.thirdparty</groupId>
78       <artifactId>antlr4-runtime-osgi-nohead</artifactId>
79     </dependency>
80     <!--Compile scopes for all testing dependencies are intentional-->
81     <!--This way, all testing dependencies can be transitively used by other integration test modules-->
82     <!--If the dependencies are test scoped, they are not visible to other maven modules depending on sal-binding-it-->
83
84     <!--TODO Create generic utilities(extract from this module) for integration tests on the controller-->
85     <dependency>
86       <groupId>org.opendaylight.yangtools.thirdparty</groupId>
87       <artifactId>xtend-lib-osgi</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.openexi</groupId>
91       <artifactId>nagasena</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.openexi</groupId>
95       <artifactId>nagasena-rta</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.ops4j.pax.exam</groupId>
99       <artifactId>pax-exam</artifactId>
100       <version>${exam.version}</version>
101       <!-- Compile scope here is intentional, it is used in TestHelper
102                 class which could be downloaded via nexus and reused in other integration
103                 tests. -->
104       <scope>compile</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.ops4j.pax.exam</groupId>
108       <artifactId>pax-exam-container-native</artifactId>
109       <scope>compile</scope>
110     </dependency>
111     <dependency>
112       <groupId>org.ops4j.pax.exam</groupId>
113       <artifactId>pax-exam-junit4</artifactId>
114       <scope>compile</scope>
115     </dependency>
116     <dependency>
117       <groupId>org.ops4j.pax.exam</groupId>
118       <artifactId>pax-exam-link-mvn</artifactId>
119       <scope>compile</scope>
120     </dependency>
121     <dependency>
122       <groupId>org.slf4j</groupId>
123       <artifactId>log4j-over-slf4j</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.controller.model</groupId>
127       <artifactId>model-flow-service</artifactId>
128       <scope>provided</scope>
129     </dependency>
130   </dependencies>
131
132   <build>
133     <pluginManagement>
134       <plugins>
135         <!--This plugin's configuration is used to store Eclipse
136                     m2e settings only. It has no influence on the Maven build itself. -->
137         <plugin>
138           <groupId>org.eclipse.m2e</groupId>
139           <artifactId>lifecycle-mapping</artifactId>
140           <version>${lifecycle.mapping.version}</version>
141           <configuration>
142             <lifecycleMappingMetadata>
143               <pluginExecutions>
144                 <pluginExecution>
145                   <pluginExecutionFilter>
146                     <groupId>org.ops4j.pax.exam</groupId>
147                     <artifactId>maven-paxexam-plugin</artifactId>
148                     <versionRange>[1.2.4,)</versionRange>
149                     <goals>
150                       <goal>generate-depends-file</goal>
151                     </goals>
152                   </pluginExecutionFilter>
153                   <action>
154                     <ignore></ignore>
155                   </action>
156                 </pluginExecution>
157               </pluginExecutions>
158             </lifecycleMappingMetadata>
159           </configuration>
160         </plugin>
161       </plugins>
162     </pluginManagement>
163     <plugins>
164       <plugin>
165         <groupId>org.ops4j.pax.exam</groupId>
166         <artifactId>maven-paxexam-plugin</artifactId>
167         <executions>
168           <execution>
169             <id>generate-config</id>
170             <goals>
171               <goal>generate-depends-file</goal>
172             </goals>
173           </execution>
174         </executions>
175       </plugin>
176     </plugins>
177   </build>
178   <scm>
179     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
180     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
181     <tag>HEAD</tag>
182     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
183   </scm>
184 </project>