b2ae8d921abd6eda18aab7a2960d35bee9c41dd5
[controller.git] / opendaylight / sal / yang-prototype / sal / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         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         <groupId>org.opendaylight.controller</groupId>
5         <artifactId>sal-parent</artifactId>
6         <version>1.0-SNAPSHOT</version>
7         <packaging>pom</packaging>
8
9         <modules>
10                 <module>sal-common</module>
11                 <module>sal-common-util</module>
12                 <module>sal-data-api</module>
13                 <module>sal-binding-api</module>
14                 <module>sal-binding-broker-impl</module>
15         </modules>
16
17         <properties>
18                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19                 <slf4j.version>1.7.2</slf4j.version>
20                 <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
21                 <yang.version>0.5.7-SNAPSHOT</yang.version>
22                 <maven.bundle.version>2.4.0</maven.bundle.version>
23         </properties>
24
25     <pluginRepositories>
26         <pluginRepository>
27             <id>central</id>
28             <name>central</name>
29             <url>${nexusproxy}/repositories/central/</url>
30         </pluginRepository>
31         <pluginRepository>
32             <id>central2</id>
33             <name>central2</name>
34             <url>${nexusproxy}/repositories/central2/</url>
35         </pluginRepository>
36         <pluginRepository>
37             <id>opendaylight.snapshot</id>
38             <name>opendaylight.snapshot</name>
39             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
40         </pluginRepository>
41     </pluginRepositories>
42
43
44         <repositories>
45                 <!-- EBR release -->
46                 <!-- http://repository.springsource.com/maven/bundles/release -->
47                 <repository>
48                         <id>ebr-bundles-release</id>
49                         <name>ebr-bundles-release</name>
50                         <url>${nexusproxy}/repositories/ebr-bundles-release/</url>
51                 </repository>
52                 <!-- EBR external -->
53                 <!-- http://repository.springsource.com/maven/bundles/external -->
54                 <repository>
55                         <id>ebr-bundles-external</id>
56                         <name>ebr-bundles-external</name>
57                         <url>${nexusproxy}/repositories/ebr-bundles-external/</url>
58                 </repository>
59                 <!-- Maven repo2 mirror -->
60                 <!-- http://repo2.maven.org/maven2 -->
61                 <repository>
62                         <id>central2</id>
63                         <name>central2</name>
64                         <url>${nexusproxy}/repositories/central2/</url>
65                 </repository>
66                 <!-- Maven repo1 mirror -->
67                 <!-- http://repo1.maven.org/maven2 -->
68                 <repository>
69                         <id>central</id>
70                         <name>central</name>
71                         <url>${nexusproxy}/repositories/central/</url>
72                 </repository>
73                 <!-- Pax mirror -->
74                 <!-- https://oss.sonatype.org/content/repositories/ops4j-releases -->
75                 <repository>
76                         <id>ops4j-releases</id>
77                         <name>ops4j-releases</name>
78                         <url>${nexusproxy}/repositories/ops4j-releases/</url>
79                 </repository>
80                 <!-- Third Packages hosted in local maven because not available in other 
81                         places -->
82                 <repository>
83                         <id>thirdparty</id>
84                         <name>thirdparty</name>
85                         <url>${nexusproxy}/repositories/thirdparty/</url>
86                 </repository>
87                 <!-- Jboss mirror -->
88                 <!-- https://repository.jboss.org/nexus/content/repositories/releases -->
89                 <repository>
90                         <id>jboss.releases</id>
91                         <name>jboss.releases</name>
92                         <url>${nexusproxy}/repositories/jboss.releases/</url>
93                 </repository>
94                 <!-- OpenDayLight Released artifact -->
95                 <repository>
96                         <id>opendaylight-release</id>
97                         <name>opendaylight-release</name>
98                         <url>${nexusproxy}/repositories/opendaylight.release/</url>
99                 </repository>
100                 <!-- OpenDayLight Snapshot artifact -->
101                 <repository>
102                         <id>opendaylight-snapshot</id>
103                         <name>opendaylight-snapshot</name>
104                         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
105                 </repository>
106         </repositories>
107
108
109
110         <dependencyManagement>
111                 <dependencies>
112                         <dependency>
113                                 <groupId>com.google.guava</groupId>
114                                 <artifactId>guava</artifactId>
115                                 <version>14.0.1</version>
116                                 <type>jar</type>
117                         </dependency>
118                         <dependency>
119                                 <groupId>org.slf4j</groupId>
120                                 <artifactId>slf4j-api</artifactId>
121                                 <version>1.7.2</version>
122                         </dependency>
123                         <dependency>
124                                 <groupId>junit</groupId>
125                                 <artifactId>junit</artifactId>
126                                 <version>4.10</version>
127                         </dependency>
128                         <dependency>
129                                 <groupId>org.opendaylight.yangtools</groupId>
130                                 <artifactId>yang-binding</artifactId>
131                                 <version>${yang.version}</version>
132                         </dependency>
133                         <dependency>
134                                 <groupId>org.opendaylight.yangtools</groupId>
135                                 <artifactId>yang-common</artifactId>
136                                 <version>${yang.version}</version>
137                         </dependency>
138                         <dependency>
139                                 <groupId>org.opendaylight.yangtools</groupId>
140                                 <artifactId>yang-data-api</artifactId>
141                                 <version>${yang.version}</version>
142                         </dependency>
143                         <dependency>
144                                 <groupId>org.opendaylight.yangtools</groupId>
145                                 <artifactId>yang-model-api</artifactId>
146                                 <version>${yang.version}</version>
147                         </dependency>
148                         <dependency>
149                                 <groupId>org.opendaylight.yangtools</groupId>
150                                 <artifactId>yang-data-util</artifactId>
151                                 <version>${yang.version}</version>
152                         </dependency>
153                 </dependencies>
154
155         </dependencyManagement>
156
157         <dependencies>
158                 <dependency>
159                         <groupId>junit</groupId>
160                         <artifactId>junit</artifactId>
161                         <scope>test</scope>
162                         <optional>true</optional>
163                 </dependency>
164                 <dependency>
165                         <groupId>org.mockito</groupId>
166                         <artifactId>mockito-all</artifactId>
167                         <version>1.9.5</version>
168                         <scope>test</scope>
169                 </dependency>
170         </dependencies>
171         <build>
172                 <plugins>
173                         <plugin>
174                                 <groupId>org.apache.felix</groupId>
175                                 <artifactId>maven-bundle-plugin</artifactId>
176                                 <version>${maven.bundle.version}</version>
177                                 <extensions>true</extensions>
178                                 <configuration>
179                                         <instructions>
180                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
181                                         </instructions>
182                                         <manifestLocation>${project.basedir}/META-INF</manifestLocation>
183                                 </configuration>
184                         </plugin>
185                         <plugin>
186                                 <groupId>org.apache.maven.plugins</groupId>
187                                 <artifactId>maven-compiler-plugin</artifactId>
188                                 <version>2.0</version>
189                                 <inherited>true</inherited>
190                                 <configuration>
191                                         <source>1.7</source>
192                                         <target>1.7</target>
193                                 </configuration>
194                         </plugin>
195                         <plugin>
196                                 <groupId>org.apache.maven.plugins</groupId>
197                                 <artifactId>maven-javadoc-plugin</artifactId>
198                                 <version>2.8.1</version>
199                                 <configuration>
200                                         <stylesheet>maven</stylesheet>
201                                 </configuration>
202                                 <executions>
203                                         <execution>
204                                                 <goals>
205                                                         <goal>aggregate</goal>
206                                                 </goals>
207                                                 <phase>site</phase>
208                                         </execution>
209                                 </executions>
210                         </plugin>
211                 </plugins>
212         </build>
213         <reporting>
214                 <plugins>
215                         <plugin>
216                                 <groupId>org.codehaus.mojo</groupId>
217                                 <artifactId>findbugs-maven-plugin</artifactId>
218                                 <version>2.4.0</version>
219                                 <configuration>
220                                         <effort>Max</effort>
221                                         <threshold>Low</threshold>
222                                         <goal>site</goal>
223                                 </configuration>
224                         </plugin>
225                         <plugin>
226                                 <groupId>org.codehaus.mojo</groupId>
227                                 <artifactId>jdepend-maven-plugin</artifactId>
228                                 <version>2.0-beta-2</version>
229                         </plugin>
230                 </plugins>
231         </reporting>
232 </project>