Drop obsolete Maven site configuration
[bgpcep.git] / data-change-counter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved.
4   This program and the accompanying materials are made available under the
5   terms of the Eclipse Public License v1.0 which accompanies this distribution,
6   and is available at http://www.eclipse.org/legal/epl-v10.html -->
7
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10     <modelVersion>4.0.0</modelVersion>
11     <parent>
12         <groupId>org.opendaylight.bgpcep</groupId>
13         <artifactId>bgpcep-parent</artifactId>
14         <version>0.9.0-SNAPSHOT</version>
15         <relativePath>../parent</relativePath>
16     </parent>
17     <artifactId>data-change-counter</artifactId>
18     <packaging>bundle</packaging>
19     <name>${project.artifactId}</name>
20
21     <dependencies>
22         <dependency>
23             <groupId>org.slf4j</groupId>
24             <artifactId>slf4j-api</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>com.google.guava</groupId>
28             <artifactId>guava</artifactId>
29         </dependency>
30
31         <dependency>
32             <groupId>org.opendaylight.mdsal</groupId>
33             <artifactId>yang-binding</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>concepts</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.yangtools</groupId>
41             <artifactId>yang-common</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller</groupId>
45             <artifactId>sal-binding-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>sal-common-api</artifactId>
50         </dependency>
51
52         <dependency>
53             <groupId>org.opendaylight.controller</groupId>
54             <artifactId>config-api</artifactId>
55         </dependency>
56
57         <dependency>
58             <groupId>org.opendaylight.mdsal.model</groupId>
59             <artifactId>ietf-topology</artifactId>
60         </dependency>
61
62         <dependency>
63             <groupId>org.opendaylight.controller</groupId>
64             <artifactId>sal-binding-config</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.osgi</groupId>
68             <artifactId>org.osgi.core</artifactId>
69             <scope>provided</scope>
70         </dependency>
71
72         <!-- test dependencies -->
73         <dependency>
74             <groupId>junit</groupId>
75             <artifactId>junit</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.controller</groupId>
79             <artifactId>sal-binding-broker-impl</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.controller</groupId>
84             <artifactId>sal-binding-broker-impl</artifactId>
85             <scope>test</scope>
86             <type>test-jar</type>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.controller</groupId>
90             <artifactId>config-manager</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>config-util</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.mockito</groupId>
99             <artifactId>mockito-core</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.yangtools</groupId>
103             <artifactId>mockito-configuration</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.controller</groupId>
107             <artifactId>config-manager</artifactId>
108             <type>test-jar</type>
109         </dependency>
110         <dependency>
111             <groupId>${project.groupId}</groupId>
112             <artifactId>testtool-util</artifactId>
113             <scope>test</scope>
114         </dependency>
115     </dependencies>
116
117     <build>
118         <plugins>
119             <plugin>
120                 <groupId>org.opendaylight.yangtools</groupId>
121                 <artifactId>yang-maven-plugin</artifactId>
122             </plugin>
123             <plugin>
124                 <groupId>org.apache.felix</groupId>
125                 <artifactId>maven-bundle-plugin</artifactId>
126                 <extensions>true</extensions>
127                 <configuration>
128                     <instructions>
129                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
130                     </instructions>
131                 </configuration>
132             </plugin>
133         </plugins>
134     </build>
135 </project>