Merge "BUG 3057 - notify added event source by topics created before"
[controller.git] / features / config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>config-subsystem</artifactId>
7     <version>0.4.0-SNAPSHOT</version>
8     <relativePath>../../opendaylight/config/</relativePath>
9   </parent>
10   <artifactId>features-config</artifactId>
11
12   <packaging>jar</packaging>
13
14   <properties>
15     <features.file>features.xml</features.file>
16   </properties>
17
18   <dependencies>
19     <!-- dependency for opendaylight-karaf-empty for use by testing -->
20     <dependency>
21       <groupId>org.opendaylight.controller</groupId>
22       <artifactId>opendaylight-karaf-empty</artifactId>
23       <version>1.6.0-SNAPSHOT</version>
24       <type>zip</type>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.yangtools</groupId>
28       <artifactId>features-yangtools</artifactId>
29       <version>${yangtools.version}</version>
30       <classifier>features</classifier>
31       <type>xml</type>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>sal-common</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>config-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>netty-config-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>io.netty</groupId>
47       <artifactId>netty-transport</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>io.netty</groupId>
51       <artifactId>netty-common</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>io.netty</groupId>
55       <artifactId>netty-buffer</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>config-util</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>yang-jmx-generator</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>shutdown-api</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>shutdown-impl</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.osgi</groupId>
75       <artifactId>org.osgi.core</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>com.google.guava</groupId>
79       <artifactId>guava</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.javassist</groupId>
83       <artifactId>javassist</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.controller</groupId>
87       <artifactId>config-manager</artifactId>
88     </dependency>
89     <!-- test the features.xml -->
90     <dependency>
91       <groupId>org.opendaylight.odlparent</groupId>
92       <artifactId>features-test</artifactId>
93     </dependency>
94   </dependencies>
95
96   <build>
97     <resources>
98       <resource>
99         <filtering>true</filtering>
100         <directory>src/main/resources</directory>
101       </resource>
102     </resources>
103     <plugins>
104       <plugin>
105         <groupId>org.apache.maven.plugins</groupId>
106         <artifactId>maven-resources-plugin</artifactId>
107         <executions>
108           <execution>
109             <id>filter</id>
110             <goals>
111               <goal>resources</goal>
112             </goals>
113             <phase>generate-resources</phase>
114           </execution>
115         </executions>
116       </plugin>
117       <plugin>
118         <groupId>org.codehaus.mojo</groupId>
119         <artifactId>build-helper-maven-plugin</artifactId>
120         <executions>
121           <execution>
122             <id>attach-artifacts</id>
123             <goals>
124               <goal>attach-artifact</goal>
125             </goals>
126             <phase>package</phase>
127             <configuration>
128               <artifacts>
129                 <artifact>
130                   <file>${project.build.directory}/classes/${features.file}</file>
131                   <type>xml</type>
132                   <classifier>features</classifier>
133                 </artifact>
134               </artifacts>
135             </configuration>
136           </execution>
137         </executions>
138       </plugin>
139       <plugin>
140         <groupId>org.apache.maven.plugins</groupId>
141         <artifactId>maven-surefire-plugin</artifactId>
142         <configuration>
143           <systemPropertyVariables>
144             <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
145             <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
146             <karaf.distro.version>${commons.opendaylight.version}</karaf.distro.version>
147           </systemPropertyVariables>
148           <dependenciesToScan>
149            <dependency>org.opendaylight.odlparent:features-test</dependency>
150           </dependenciesToScan>
151         </configuration>
152       </plugin>
153     </plugins>
154   </build>
155   <scm>
156     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
157     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
158     <tag>HEAD</tag>
159     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
160   </scm>
161 </project>