BUG-5619 Enable maven parallel build for bgpcep I
[bgpcep.git] / pcep / segment-routing / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12    <modelVersion>4.0.0</modelVersion>
13    <scm>
14       <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
15       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
16       <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
17       <tag>HEAD</tag>
18    </scm>
19    <parent>
20       <groupId>org.opendaylight.bgpcep</groupId>
21       <artifactId>pcep-parent</artifactId>
22       <version>0.7.0-SNAPSHOT</version>
23    </parent>
24    <artifactId>pcep-segment-routing</artifactId>
25    <description>PCE Segment Routing model plugin</description>
26    <packaging>bundle</packaging>
27    <name>${project.artifactId}</name>
28    <prerequisites>
29       <maven>3.0.4</maven>
30    </prerequisites>
31
32    <dependencies>
33       <dependency>
34          <groupId>${project.groupId}</groupId>
35          <artifactId>util</artifactId>
36       </dependency>
37       <dependency>
38          <groupId>${project.groupId}</groupId>
39          <artifactId>pcep-ietf-stateful07</artifactId>
40       </dependency>
41       <dependency>
42          <groupId>${project.groupId}</groupId>
43          <artifactId>pcep-api</artifactId>
44       </dependency>
45       <dependency>
46          <groupId>${project.groupId}</groupId>
47          <artifactId>pcep-spi</artifactId>
48       </dependency>
49       <dependency>
50          <groupId>${project.groupId}</groupId>
51          <artifactId>pcep-impl</artifactId>
52       </dependency>
53       <dependency>
54          <groupId>${project.groupId}</groupId>
55          <artifactId>rsvp-api</artifactId>
56       </dependency>
57       <dependency>
58          <groupId>${project.groupId}</groupId>
59          <artifactId>pcep-topology-api</artifactId>
60       </dependency>
61
62       <dependency>
63          <groupId>org.opendaylight.mdsal</groupId>
64          <artifactId>yang-binding</artifactId>
65       </dependency>
66       <dependency>
67          <groupId>org.opendaylight.yangtools</groupId>
68          <artifactId>yang-common</artifactId>
69       </dependency>
70       <dependency>
71          <groupId>org.opendaylight.yangtools</groupId>
72          <artifactId>concepts</artifactId>
73       </dependency>
74       <dependency>
75          <groupId>org.opendaylight.mdsal.model</groupId>
76          <artifactId>ietf-inet-types-2013-07-15</artifactId>
77       </dependency>
78       <dependency>
79          <groupId>org.opendaylight.mdsal.model</groupId>
80          <artifactId>ietf-topology</artifactId>
81       </dependency>
82       <dependency>
83           <groupId>org.opendaylight.controller</groupId>
84           <artifactId>config-api</artifactId>
85       </dependency>
86
87       <dependency>
88           <groupId>io.netty</groupId>
89           <artifactId>netty-buffer</artifactId>
90       </dependency>
91       <dependency>
92          <groupId>com.google.guava</groupId>
93          <artifactId>guava</artifactId>
94       </dependency>
95       <dependency>
96          <groupId>org.slf4j</groupId>
97          <artifactId>slf4j-api</artifactId>
98       </dependency>
99       <dependency>
100          <groupId>org.osgi</groupId>
101          <artifactId>org.osgi.core</artifactId>
102          <scope>provided</scope>
103       </dependency>
104       <!--test dependencies -->
105       <dependency>
106          <groupId>junit</groupId>
107          <artifactId>junit</artifactId>
108       </dependency>
109       <dependency>
110          <groupId>org.opendaylight.controller</groupId>
111          <artifactId>config-manager</artifactId>
112          <type>test-jar</type>
113       </dependency>
114       <dependency>
115          <groupId>org.opendaylight.controller</groupId>
116          <artifactId>config-manager</artifactId>
117          <scope>test</scope>
118       </dependency>
119       <dependency>
120          <groupId>org.opendaylight.controller</groupId>
121          <artifactId>config-util</artifactId>
122       </dependency>
123       <dependency>
124          <groupId>org.opendaylight.yangtools</groupId>
125          <artifactId>mockito-configuration</artifactId>
126       </dependency>
127       <dependency>
128          <groupId>${project.groupId}</groupId>
129          <artifactId>pcep-spi</artifactId>
130          <type>test-jar</type>
131          <scope>test</scope>
132       </dependency>
133       <dependency>
134          <groupId>${project.groupId}</groupId>
135          <artifactId>testtool-util</artifactId>
136          <scope>test</scope>
137       </dependency>
138       <dependency>
139          <groupId>org.opendaylight.controller</groupId>
140          <artifactId>sal-binding-broker-impl</artifactId>
141          <scope>test</scope>
142       </dependency>
143       <dependency>
144           <groupId>org.opendaylight.controller</groupId>
145           <artifactId>sal-binding-broker-impl</artifactId>
146           <scope>test</scope>
147           <type>test-jar</type>
148       </dependency>
149       <dependency>
150          <groupId>${project.groupId}</groupId>
151          <artifactId>pcep-topology-provider</artifactId>
152          <type>test-jar</type>
153          <scope>test</scope>
154       </dependency>
155       <dependency>
156          <groupId>${project.groupId}</groupId>
157          <artifactId>pcep-topology-provider</artifactId>
158          <scope>test</scope>
159       </dependency>
160    </dependencies>
161
162    <build>
163       <plugins>
164          <plugin>
165             <groupId>org.opendaylight.yangtools</groupId>
166             <artifactId>yang-maven-plugin</artifactId>
167          </plugin>
168          <plugin>
169             <groupId>org.apache.felix</groupId>
170             <artifactId>maven-bundle-plugin</artifactId>
171             <extensions>true</extensions>
172             <configuration>
173                <instructions>
174                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
175                </instructions>
176             </configuration>
177          </plugin>
178       </plugins>
179    </build>
180
181   <!--
182       Maven Site Configuration
183
184       The following configuration is necessary for maven-site-plugin to
185       correctly identify the correct deployment path for OpenDaylight Maven
186       sites.
187   -->
188   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
189
190   <distributionManagement>
191     <site>
192       <id>opendaylight-site</id>
193       <url>${nexus.site.url}/${project.artifactId}/</url>
194     </site>
195   </distributionManagement>
196 </project>