Rework project structure
[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.4.0-SNAPSHOT</version>
15     <relativePath>../parent</relativePath>
16   </parent>
17   <prerequisites>
18     <maven>3.0.4</maven>
19   </prerequisites>
20   <artifactId>data-change-counter</artifactId>
21   <packaging>bundle</packaging>
22   <name>${project.artifactId}</name>
23
24   <dependencies>
25     <dependency>
26       <groupId>org.slf4j</groupId>
27       <artifactId>slf4j-api</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>com.google.guava</groupId>
31       <artifactId>guava</artifactId>
32     </dependency>
33
34     <dependency>
35       <groupId>org.opendaylight.yangtools</groupId>
36       <artifactId>yang-binding</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.yangtools</groupId>
40       <artifactId>concepts</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.yangtools</groupId>
44       <artifactId>yang-common</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal-binding-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>sal-common-api</artifactId>
53     </dependency>
54
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>config-api</artifactId>
58     </dependency>
59
60     <dependency>
61       <groupId>org.opendaylight.yangtools.model</groupId>
62       <artifactId>ietf-topology</artifactId>
63     </dependency>
64
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>sal-binding-config</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.osgi</groupId>
71       <artifactId>org.osgi.core</artifactId>
72       <scope>provided</scope>
73     </dependency>
74
75     <!-- test dependencies -->
76     <dependency>
77       <groupId>junit</groupId>
78       <artifactId>junit</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>sal-binding-broker-impl</artifactId>
83       <scope>test</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.controller</groupId>
87       <artifactId>sal-binding-broker-impl</artifactId>
88       <scope>test</scope>
89       <type>test-jar</type>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.controller</groupId>
93       <artifactId>config-manager</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.controller</groupId>
97       <artifactId>config-util</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>org.mockito</groupId>
101       <artifactId>mockito-core</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.yangtools</groupId>
105       <artifactId>mockito-configuration</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.controller</groupId>
109       <artifactId>config-manager</artifactId>
110       <type>test-jar</type>
111     </dependency>
112   </dependencies>
113
114   <build>
115     <plugins>
116       <plugin>
117         <groupId>org.opendaylight.yangtools</groupId>
118         <artifactId>yang-maven-plugin</artifactId>
119       </plugin>
120       <plugin>
121         <groupId>org.apache.felix</groupId>
122         <artifactId>maven-bundle-plugin</artifactId>
123         <extensions>true</extensions>
124         <configuration>
125           <instructions>
126             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
127           </instructions>
128         </configuration>
129       </plugin>
130     </plugins>
131   </build>
132 </project>