Add case for READY in RemoteProxyTransaction
[controller.git] / opendaylight / md-sal / sal-schema-service / 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>bundle-parent</artifactId>
7     <version>1.8.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-schema-service</artifactId>
13   <version>1.5.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <dependencyManagement>
17     <dependencies>
18       <dependency>
19         <groupId>org.opendaylight.yangtools</groupId>
20         <artifactId>yangtools-artifacts</artifactId>
21         <version>1.1.0-SNAPSHOT</version>
22         <type>pom</type>
23         <scope>import</scope>
24       </dependency>
25       <dependency>
26         <groupId>org.opendaylight.controller</groupId>
27         <artifactId>mdsal-artifacts</artifactId>
28         <version>1.5.0-SNAPSHOT</version>
29         <type>pom</type>
30         <scope>import</scope>
31       </dependency>
32     </dependencies>
33   </dependencyManagement>
34
35   <dependencies>
36     <dependency>
37       <groupId>com.google.guava</groupId>
38       <artifactId>guava</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>sal-core-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>yang-parser-impl</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.slf4j</groupId>
50       <artifactId>slf4j-api</artifactId>
51     </dependency>
52   </dependencies>
53
54   <build>
55     <plugins>
56       <plugin>
57         <groupId>org.apache.felix</groupId>
58         <artifactId>maven-bundle-plugin</artifactId>
59         <extensions>true</extensions>
60         <configuration>
61           <instructions>
62             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
63             <Bundle-Activator>org.opendaylight.controller.sal.schema.service.impl.SchemaServiceActivator</Bundle-Activator>
64           </instructions>
65         </configuration>
66       </plugin>
67     </plugins>
68   </build>
69
70   <scm>
71     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
72     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
73     <tag>HEAD</tag>
74     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
75   </scm>
76
77   <!--
78       Maven Site Configuration
79
80       The following configuration is necessary for maven-site-plugin to
81       correctly identify the correct deployment path for OpenDaylight Maven
82       sites.
83   -->
84   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
85
86   <distributionManagement>
87     <site>
88       <id>opendaylight-site</id>
89       <url>${nexus.site.url}/${project.artifactId}/</url>
90     </site>
91   </distributionManagement>
92 </project>