Migrate to odlparent 1.8.0-Carbon
[controller.git] / opendaylight / md-sal / sal-binding-dom-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.odlparent</groupId>
6     <artifactId>odlparent</artifactId>
7     <version>1.8.0-Carbon</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-binding-dom-it</artifactId>
13   <version>1.6.0-SNAPSHOT</version>
14   <packaging>jar</packaging>
15
16   <dependencyManagement>
17     <dependencies>
18       <dependency>
19         <groupId>org.opendaylight.yangtools</groupId>
20         <artifactId>yangtools-artifacts</artifactId>
21         <version>1.2.0-SNAPSHOT</version>
22         <type>pom</type>
23         <scope>import</scope>
24       </dependency>
25       <dependency>
26         <groupId>org.opendaylight.mdsal</groupId>
27         <artifactId>mdsal-artifacts</artifactId>
28         <version>2.3.0-SNAPSHOT</version>
29         <type>pom</type>
30         <scope>import</scope>
31       </dependency>
32       <dependency>
33         <groupId>org.opendaylight.mdsal.model</groupId>
34         <artifactId>mdsal-model-artifacts</artifactId>
35         <version>0.11.0-SNAPSHOT</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39       <dependency>
40         <groupId>org.opendaylight.controller</groupId>
41         <artifactId>mdsal-artifacts</artifactId>
42         <version>1.6.0-SNAPSHOT</version>
43         <type>pom</type>
44         <scope>import</scope>
45       </dependency>
46     </dependencies>
47   </dependencyManagement>
48
49   <dependencies>
50     <dependency>
51       <groupId>junit</groupId>
52       <artifactId>junit</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.mdsal</groupId>
56       <artifactId>yang-binding</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>sal-binding-broker-impl</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>sal-binding-broker-impl</artifactId>
66       <type>test-jar</type>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.ops4j.pax.exam</groupId>
71       <artifactId>pax-exam-container-native</artifactId>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.slf4j</groupId>
76       <artifactId>slf4j-simple</artifactId>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.yangtools</groupId>
81       <artifactId>yang-test-util</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>sal-test-model</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.mdsal.model</groupId>
89       <artifactId>opendaylight-l2-types</artifactId>
90     </dependency>
91   </dependencies>
92
93   <build>
94     <plugins>
95       <plugin>
96         <groupId>org.jacoco</groupId>
97         <artifactId>jacoco-maven-plugin</artifactId>
98         <configuration>
99           <includes>
100             <include>org.opendaylight.controller.*</include>
101           </includes>
102         </configuration>
103         <executions>
104           <execution>
105             <id>pre-test</id>
106             <goals>
107               <goal>prepare-agent</goal>
108             </goals>
109           </execution>
110           <execution>
111             <id>post-test</id>
112             <goals>
113               <goal>report</goal>
114             </goals>
115             <phase>test</phase>
116           </execution>
117         </executions>
118       </plugin>
119     </plugins>
120   </build>
121
122   <scm>
123     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
124     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
125     <tag>HEAD</tag>
126     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
127   </scm>
128
129   <!--
130       Maven Site Configuration
131
132       The following configuration is necessary for maven-site-plugin to
133       correctly identify the correct deployment path for OpenDaylight Maven
134       sites.
135   -->
136   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
137
138   <distributionManagement>
139     <site>
140       <id>opendaylight-site</id>
141       <url>${nexus.site.url}/${project.artifactId}/</url>
142     </site>
143   </distributionManagement>
144 </project>