Created separated project for stateful-02.
[bgpcep.git] / pcep / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <modelVersion>4.0.0</modelVersion>
7     <scm>
8         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
9         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
10         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
11         <tag>HEAD</tag>
12     </scm>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>pcep-parent</artifactId>
16         <version>0.3.0-SNAPSHOT</version>
17     </parent>
18
19     <artifactId>pcep-impl</artifactId>
20     <description>PCE Protocol Implementation</description>
21     <packaging>bundle</packaging>
22     <name>${project.artifactId}</name>
23     <prerequisites>
24         <maven>3.0.4</maven>
25     </prerequisites>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>pcep-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>pcep-spi</artifactId>
35         </dependency>
36          <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>pcep-ietf-stateful02</artifactId>
39         </dependency>
40
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>concepts</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>util</artifactId>
48         </dependency>
49
50         <dependency>
51             <groupId>org.opendaylight.controller</groupId>
52             <artifactId>protocol-framework</artifactId>
53         </dependency>
54
55         <dependency>
56             <groupId>io.netty</groupId>
57             <artifactId>netty-codec</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>io.netty</groupId>
61             <artifactId>netty-common</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>io.netty</groupId>
65             <artifactId>netty-transport</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>com.google.guava</groupId>
69             <artifactId>guava</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>com.google.code.findbugs</groupId>
73             <artifactId>jsr305</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.slf4j</groupId>
77             <artifactId>slf4j-api</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.yangtools.model</groupId>
81             <artifactId>ietf-inet-types</artifactId>
82         </dependency>
83
84         <!-- Test dependencies -->
85         <dependency>
86             <groupId>org.mockito</groupId>
87             <artifactId>mockito-core</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.yangtools</groupId>
91             <artifactId>mockito-configuration</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>protocol-framework</artifactId>
96             <scope>test</scope>
97             <type>test-jar</type>
98         </dependency>
99         <dependency>
100             <groupId>junit</groupId>
101             <artifactId>junit</artifactId>
102         </dependency>
103     </dependencies>
104
105     <build>
106         <plugins>
107             <plugin>
108                 <groupId>org.apache.felix</groupId>
109                 <artifactId>maven-bundle-plugin</artifactId>
110                 <extensions>true</extensions>
111                 <configuration>
112                     <instructions>
113                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
114                         <Export-Package>
115                             org.opendaylight.protocol.pcep.impl.*,
116                         </Export-Package>
117                     </instructions>
118                 </configuration>
119             </plugin>
120             <plugin>
121                 <groupId>org.apache.maven.plugins</groupId>
122                 <artifactId>maven-jar-plugin</artifactId>
123                 <executions>
124                     <execution>
125                         <phase>package</phase>
126                         <goals>
127                             <goal>test-jar</goal>
128                         </goals>
129                     </execution>
130                 </executions>
131             </plugin>
132         </plugins>
133     </build>
134 </project>