80e34ad3535e3caf4eb030ab5294fe78d82d38db
[controller.git] / opendaylight / md-sal / sal-dom-api / 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-core-api</artifactId>
14   <packaging>bundle</packaging>
15
16   <dependencyManagement>
17     <dependencies>
18       <dependency>
19         <groupId>org.opendaylight.controller</groupId>
20         <artifactId>mdsal-artifacts</artifactId>
21         <version>1.5.0-SNAPSHOT</version>
22         <type>pom</type>
23         <scope>import</scope>
24       </dependency>
25       <dependency>
26         <groupId>org.opendaylight.yangtools</groupId>
27         <artifactId>yangtools-artifacts</artifactId>
28         <version>1.1.0-SNAPSHOT</version>
29         <type>pom</type>
30         <scope>import</scope>
31       </dependency>
32     </dependencies>
33   </dependencyManagement>
34
35   <dependencies>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal-common-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.yangtools</groupId>
42       <artifactId>yang-data-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>yang-model-api</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.osgi</groupId>
50       <artifactId>org.osgi.core</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>junit</groupId>
54       <artifactId>junit</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>sal-test-model</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.yangtools</groupId>
62       <artifactId>yang-data-impl</artifactId>
63       <scope>test</scope>
64     </dependency>
65   </dependencies>
66
67   <profiles>
68     <!-- Turn off doclint on aggregated API javadoc build. -->
69     <profile>
70       <id>jdk8</id>
71       <activation>
72         <jdk>[1.8,)</jdk>
73       </activation>
74
75       <build>
76         <plugins>
77           <plugin>
78             <groupId>org.apache.maven.plugins</groupId>
79             <artifactId>maven-javadoc-plugin</artifactId>
80             <configuration>
81               <additionalparam>-Xdoclint:none</additionalparam>
82             </configuration>
83           </plugin>
84         </plugins>
85       </build>
86     </profile>
87   </profiles>
88   <scm>
89     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
90     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
91     <tag>HEAD</tag>
92     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
93   </scm>
94 </project>