Release transportpce
[transportpce.git] / pce / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright © 2017 AT&T and others. All rights reserved. This program
4     and the accompanying materials are made available under the terms of the
5     Eclipse Public License v1.0 which accompanies this distribution, and is available
6     at http://www.eclipse.org/legal/epl-v10.html Author: Martial Coulibaly <martial.coulibaly@gfi.com>
7     on behalf of Orange -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0"
9     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.mdsal</groupId>
16         <artifactId>binding-parent</artifactId>
17         <version>5.0.14</version>
18         <relativePath />
19     </parent>
20
21     <groupId>org.opendaylight.transportpce</groupId>
22     <artifactId>transportpce-pce</artifactId>
23     <version>1.2.0</version>
24     <packaging>bundle</packaging>
25
26     <dependencies>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>transportpce-common</artifactId>
30             <version>${project.version}</version>
31         </dependency>
32         <dependency>
33             <groupId>org.jgrapht</groupId>
34             <artifactId>jgrapht-core</artifactId>
35             <version>1.2.0</version>
36         </dependency>
37
38         <!-- Sodium bump: javax.annotation.Nullable and friends -->
39         <dependency>
40             <groupId>com.google.code.findbugs</groupId>
41             <artifactId>jsr305</artifactId>
42             <version>3.0.2</version>
43             <optional>true</optional>
44         </dependency>
45
46         <dependency>
47             <groupId>org.opendaylight.transportpce</groupId>
48             <artifactId>test-common</artifactId>
49             <version>${project.version}</version>
50             <scope>test</scope>
51         </dependency>
52
53         <dependency>
54             <groupId>org.mockito</groupId>
55             <artifactId>mockito-core</artifactId>
56             <version>2.25.0</version>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>org.powermock</groupId>
61             <artifactId>powermock-core</artifactId>
62             <version>2.0.2</version>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.powermock</groupId>
67             <artifactId>powermock-api-mockito2</artifactId>
68             <version>2.0.2</version>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>org.powermock</groupId>
73             <artifactId>powermock-module-junit4</artifactId>
74             <version>2.0.2</version>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.glassfish.jersey.containers</groupId>
79             <artifactId>jersey-container-grizzly2-http</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.glassfish.jersey.test-framework</groupId>
84             <artifactId>jersey-test-framework-core</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.glassfish.jersey.test-framework.providers</groupId>
89             <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>javax.activation</groupId>
94             <artifactId>javax.activation-api</artifactId>
95             <version>1.2.0</version>
96             <scope>test</scope>
97         </dependency>
98     </dependencies>
99
100     <build>
101         <plugins>
102             <plugin>
103                 <groupId>org.apache.maven.plugins</groupId>
104                 <artifactId>maven-jar-plugin</artifactId>
105                 <version>2.6</version>
106                 <executions>
107                     <execution>
108                         <goals>
109                             <goal>test-jar</goal>
110                         </goals>
111                     </execution>
112                 </executions>
113             </plugin>
114         </plugins>
115     </build>
116
117 </project>