Bumping versions by 0.0.1 for next dev cycle
[mdsal.git] / binding / mdsal-binding-dom-adapter / 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>mdsal-binding</artifactId>
7     <version>0.9.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>mdsal-binding-dom-adapter</artifactId>
10   <version>2.1.1-SNAPSHOT</version>
11   <packaging>bundle</packaging>
12
13   <dependencies>
14     <dependency>
15       <groupId>com.google.guava</groupId>
16       <artifactId>guava</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>org.javassist</groupId>
20       <artifactId>javassist</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.mdsal</groupId>
24       <artifactId>mdsal-binding-api</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.mdsal</groupId>
28       <artifactId>mdsal-binding-util</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.mdsal</groupId>
32       <artifactId>mdsal-dom-broker</artifactId>
33       <scope>test</scope>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.mdsal</groupId>
37       <artifactId>mdsal-dom-api</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.mdsal</groupId>
41       <artifactId>mdsal-dom-spi</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.mdsal</groupId>
45       <artifactId>mdsal-binding-generator-impl</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.mdsal</groupId>
49       <artifactId>mdsal-binding-dom-codec</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.yangtools</groupId>
53       <artifactId>yang-data-impl</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.yangtools</groupId>
57       <artifactId>yang-model-util</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.slf4j</groupId>
61       <artifactId>slf4j-api</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.osgi</groupId>
65       <artifactId>org.osgi.core</artifactId>
66       <scope>provided</scope>
67     </dependency>
68     <dependency>
69       <groupId>junit</groupId>
70       <artifactId>junit</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.mockito</groupId>
75       <artifactId>mockito-all</artifactId>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.yangtools</groupId>
80       <artifactId>yang-parser-impl</artifactId>
81       <scope>test</scope>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.mdsal</groupId>
85       <artifactId>mdsal-binding-test-model</artifactId>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.slf4j</groupId>
90       <artifactId>slf4j-simple</artifactId>
91       <scope>test</scope>
92     </dependency>
93   </dependencies>
94
95   <build>
96     <plugins>
97
98       <plugin>
99         <groupId>org.apache.felix</groupId>
100         <artifactId>maven-bundle-plugin</artifactId>
101         <extensions>true</extensions>
102       </plugin>
103
104       <plugin>
105         <groupId>org.apache.maven.plugins</groupId>
106         <artifactId>maven-jar-plugin</artifactId>
107         <executions>
108           <execution>
109             <goals>
110               <goal>test-jar</goal>
111             </goals>
112           </execution>
113         </executions>
114       </plugin>
115     </plugins>
116   </build>
117   <scm>
118     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
119     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
120     <tag>HEAD</tag>
121     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
122   </scm>
123
124   <!--
125       Maven Site Configuration
126
127       The following configuration is necessary for maven-site-plugin to
128       correctly identify the correct deployment path for OpenDaylight Maven
129       sites.
130   -->
131   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
132
133   <distributionManagement>
134     <site>
135       <id>opendaylight-site</id>
136       <url>${nexus.site.url}/${project.artifactId}/</url>
137     </site>
138   </distributionManagement>
139
140 </project>