Merge "BUG-50 : added parsers for Notification and Error Object."
[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         <parent>
7                 <groupId>org.opendaylight.bgpcep</groupId>
8                 <artifactId>pcep-parent</artifactId>
9                 <version>0.3.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>pcep-impl</artifactId>
14         <description>PCE Protocol Implementation</description>
15         <packaging>bundle</packaging>
16         <name>${project.artifactId}</name>
17         <prerequisites>
18                 <maven>3.0.4</maven>
19         </prerequisites>
20
21         <dependencies>
22                 <dependency>
23                         <groupId>${project.groupId}</groupId>
24                         <artifactId>pcep-api</artifactId>
25                         <version>${project.version}</version>
26                 </dependency>
27                 <dependency>
28                         <groupId>${project.groupId}</groupId>
29                         <artifactId>pcep-spi</artifactId>
30                         <version>${project.version}</version>
31                 </dependency>
32                 <dependency>
33                         <groupId>${project.groupId}</groupId>
34                         <artifactId>framework</artifactId>
35                         <version>${project.version}</version>
36                 </dependency>
37                 <dependency>
38                         <groupId>${project.groupId}</groupId>
39                         <artifactId>util</artifactId>
40                         <version>${project.version}</version>
41                 </dependency>
42                 <dependency>
43                         <groupId>${project.groupId}</groupId>
44                         <artifactId>concepts</artifactId>
45                         <version>${project.version}</version>
46                 </dependency>
47         <dependency>
48                         <groupId>io.netty</groupId>
49                         <artifactId>netty-codec</artifactId>
50             <version>${netty.version}</version>
51                 </dependency>
52         <dependency>
53                         <groupId>io.netty</groupId>
54                         <artifactId>netty-common</artifactId>
55             <version>${netty.version}</version>
56                 </dependency>
57         <dependency>
58                         <groupId>io.netty</groupId>
59                         <artifactId>netty-transport</artifactId>
60             <version>${netty.version}</version>
61                 </dependency>
62                 <dependency>
63                         <groupId>com.google.guava</groupId>
64                         <artifactId>guava</artifactId>
65                         <version>${guava.version}</version>
66                 </dependency>
67                 <dependency>
68                         <groupId>com.google.code.findbugs</groupId>
69                         <artifactId>jsr305</artifactId>
70                         <version>2.0.1</version>
71                 </dependency>
72                 <dependency>
73                         <groupId>org.slf4j</groupId>
74                         <artifactId>slf4j-api</artifactId>
75                         <version>${slf4j.version}</version>
76                 </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools.model</groupId>
79             <artifactId>ietf-inet-types</artifactId>
80             <version>2010.09.24-SNAPSHOT</version>
81         </dependency>
82         <dependency>
83             <groupId>org.osgi</groupId>
84             <artifactId>org.osgi.core</artifactId>
85             <version>${osgi.version}</version>
86             <scope>provided</scope>
87         </dependency>
88                 <dependency>
89                         <groupId>org.mockito</groupId>
90                         <artifactId>mockito-core</artifactId>
91             <version>${mockito.version}</version>
92                         <scope>test</scope>
93                 </dependency>
94                 <dependency>
95                         <groupId>${project.groupId}</groupId>
96                         <artifactId>mockito-configuration</artifactId>
97                         <version>${project.version}</version>
98                         <scope>test</scope>
99                 </dependency>
100                 <dependency>
101                         <groupId>${project.groupId}</groupId>
102                         <artifactId>framework</artifactId>
103                         <version>${project.version}</version>
104                         <scope>test</scope>
105                         <type>test-jar</type>
106                 </dependency>
107         <dependency>
108             <groupId>junit</groupId>
109             <artifactId>junit</artifactId>
110         </dependency>
111         </dependencies>
112
113         <build>
114                 <plugins>
115                         <plugin>
116                                 <groupId>org.apache.felix</groupId>
117                                 <artifactId>maven-bundle-plugin</artifactId>
118                                 <version>${maven.bundle.version}</version>
119                                 <extensions>true</extensions>
120                                 <configuration>
121                                         <instructions>
122                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
123                                                 <Private-Package>
124                                                         org.opendaylight.protocol.pcep.impl.*,
125                                                 </Private-Package>
126                         <Activator>org.opendaylight.protocol.pcep.parser.impl.BundleActivator</Activator>
127                                         </instructions>
128                                 </configuration>
129                         </plugin>
130                         <plugin>
131                                 <groupId>org.apache.maven.plugins</groupId>
132                                 <artifactId>maven-jar-plugin</artifactId>
133                                 <version>2.4</version>
134                                 <executions>
135                                         <execution>
136                                                 <phase>package</phase>
137                                                 <goals>
138                                                         <goal>test-jar</goal>
139                                                 </goals>
140                                         </execution>
141                                 </executions>
142                         </plugin>
143                 </plugins>
144         </build>
145
146         <distributionManagement>
147                 <site>
148                         <id>${project.artifactId}</id>
149                         <name>PCEP-IMPL Module site</name>
150                         <url>${basedir}/target/site/${project.artifactId}</url>
151                 </site>
152         </distributionManagement>
153
154 </project>