285bd2cba60ff4e137f46e956c74edd2329064cf
[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>8.0.5</version>
18         <relativePath />
19     </parent>
20
21     <groupId>org.opendaylight.transportpce</groupId>
22     <artifactId>transportpce-pce</artifactId>
23     <version>4.0.0-SNAPSHOT</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         <dependency>
38             <groupId>org.opendaylight.mdsal</groupId>
39             <artifactId>mdsal-binding-runtime-spi</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.glassfish.jersey.core</groupId>
43             <artifactId>jersey-client</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.glassfish.jersey.ext</groupId>
47             <artifactId>jersey-proxy-client</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.glassfish.jersey.media</groupId>
51             <artifactId>jersey-media-json-jackson</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>com.fasterxml.jackson.datatype</groupId>
55             <artifactId>jackson-datatype-jsr310</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.transportpce</groupId>
59             <artifactId>test-common</artifactId>
60             <version>${project.version}</version>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.mdsal</groupId>
65             <artifactId>mdsal-binding-generator</artifactId>
66             <scope>test</scope>
67         </dependency>
68
69         <dependency>
70             <groupId>org.mockito</groupId>
71             <artifactId>mockito-core</artifactId>
72             <version>2.25.0</version>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.powermock</groupId>
77             <artifactId>powermock-core</artifactId>
78             <version>2.0.2</version>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.powermock</groupId>
83             <artifactId>powermock-api-mockito2</artifactId>
84             <version>2.0.2</version>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.powermock</groupId>
89             <artifactId>powermock-module-junit4</artifactId>
90             <version>2.0.2</version>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.glassfish.jersey.containers</groupId>
95             <artifactId>jersey-container-grizzly2-http</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.glassfish.jersey.test-framework</groupId>
100             <artifactId>jersey-test-framework-core</artifactId>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.glassfish.jersey.test-framework.providers</groupId>
105             <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>javax.activation</groupId>
110             <artifactId>javax.activation-api</artifactId>
111             <version>1.2.0</version>
112             <scope>test</scope>
113         </dependency>
114         <dependency>
115             <groupId>org.glassfish.jersey.inject</groupId>
116             <artifactId>jersey-hk2</artifactId>
117             <scope>test</scope>
118         </dependency>
119         <dependency>
120             <groupId>jakarta.xml.bind</groupId>
121             <artifactId>jakarta.xml.bind-api</artifactId>
122             <scope>test</scope>
123         </dependency>
124     </dependencies>
125
126     <build>
127         <plugins>
128             <plugin>
129                 <groupId>org.apache.maven.plugins</groupId>
130                 <artifactId>maven-jar-plugin</artifactId>
131                 <version>2.6</version>
132                 <executions>
133                     <execution>
134                         <goals>
135                             <goal>test-jar</goal>
136                         </goals>
137                     </execution>
138                 </executions>
139             </plugin>
140         </plugins>
141     </build>
142
143 </project>