Clean-up pom.xml layout
[controller.git] / opendaylight / md-sal / sal-dom-broker / 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   <version>1.5.0-SNAPSHOT</version>
13   <artifactId>sal-broker-impl</artifactId>
14   <packaging>bundle</packaging>
15
16   <dependencyManagement>
17     <dependencies>
18       <dependency>
19         <groupId>org.opendaylight.mdsal</groupId>
20         <artifactId>mdsal-artifacts</artifactId>
21         <version>2.2.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       <dependency>
33         <groupId>org.opendaylight.yangtools</groupId>
34         <artifactId>yangtools-artifacts</artifactId>
35         <version>1.1.0-SNAPSHOT</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39     </dependencies>
40   </dependencyManagement>
41
42   <dependencies>
43     <dependency>
44       <groupId>com.google.guava</groupId>
45       <artifactId>guava</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>com.lmax</groupId>
49       <artifactId>disruptor</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.mdsal</groupId>
53       <artifactId>mdsal-eos-dom-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.mdsal</groupId>
57       <artifactId>mdsal-dom-api</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.mdsal</groupId>
61       <artifactId>mdsal-dom-broker</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>sal-common-impl</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>sal-common-util</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>sal-core-api</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>sal-core-spi</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>sal-inmemory-datastore</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.yangtools</groupId>
85       <artifactId>util</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.yangtools</groupId>
89       <artifactId>yang-data-impl</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.yangtools</groupId>
93       <artifactId>yang-parser-impl</artifactId>
94     </dependency>
95
96     <dependency>
97       <groupId>junit</groupId>
98       <artifactId>junit</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.slf4j</groupId>
102       <artifactId>slf4j-api</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.yangtools</groupId>
106       <artifactId>mockito-configuration</artifactId>
107       <scope>test</scope>
108     </dependency>
109     <dependency>
110       <groupId>org.slf4j</groupId>
111       <artifactId>slf4j-simple</artifactId>
112       <scope>test</scope>
113     </dependency>
114   </dependencies>
115
116   <build>
117     <plugins>
118
119       <plugin>
120         <groupId>org.apache.felix</groupId>
121         <artifactId>maven-bundle-plugin</artifactId>
122         <extensions>true</extensions>
123         <configuration>
124           <instructions>
125             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
126             <Export-Package>
127                             <!--  Legacy code -->
128                             org.opendaylight.controller.sal.dom.broker,
129                             org.opendaylight.controller.sal.dom.broker.impl,
130                             org.opendaylight.controller.sal.dom.broker.osgi,
131                             org.opendaylight.controller.sal.dom.broker.util,
132                             org.opendaylight.controller.sal.dom.broker.spi,
133                             <!--sal.broker.impl is exported for sal-netconf-connector to use SchemaAwareRpcRegistry.-->
134                             <!-- TODO Remove sal.broker.impl from export when SchemaAwareRpcRegistry is not used in connector anymore -->
135                             org.opendaylight.controller.md.sal.dom.broker.impl,
136                             org.opendaylight.controller.md.sal.dom.broker.impl.*,
137                             org.opendaylight.controller.md.sal.dom.clustering.impl,
138             </Export-Package>
139             <Import-Package>*</Import-Package>
140           </instructions>
141         </configuration>
142       </plugin>
143     </plugins>
144   </build>
145
146   <profiles>
147     <!-- Turn off doclint on aggregated API javadoc build. -->
148     <profile>
149       <id>jdk8</id>
150       <activation>
151         <jdk>[1.8,)</jdk>
152       </activation>
153
154       <build>
155         <plugins>
156           <plugin>
157             <groupId>org.apache.maven.plugins</groupId>
158             <artifactId>maven-javadoc-plugin</artifactId>
159             <configuration>
160               <additionalparam>-Xdoclint:none</additionalparam>
161             </configuration>
162           </plugin>
163         </plugins>
164       </build>
165     </profile>
166   </profiles>
167   <scm>
168     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
169     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
170     <tag>HEAD</tag>
171     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
172   </scm>
173 </project>