Fix config-netty-config's dependencies 73/53173/2
authorRobert Varga <rovarga@cisco.com>
Sat, 11 Mar 2017 15:53:36 +0000 (16:53 +0100)
committerTom Pantelis <tpanteli@brocade.com>
Mon, 13 Mar 2017 02:40:00 +0000 (02:40 +0000)
This artifact carries only an XML file, there is no need
to pull in the mdsal infrastructure. This fixes the karaf4
feature.xml so it does not include mdsal bundles.

Change-Id: I2433cc7574e5bf237866fd509f235c55d5fe2e13
Signed-off-by: Robert Varga <rovarga@cisco.com>
opendaylight/config/config-netty-config/pom.xml

index cc654fe4ed55aa451f9e9f1cafbb3c98147d623b..87b7e7824505961f7c170e93a22355325fa3590a 100644 (file)
 
     <modelVersion>4.0.0</modelVersion>
     <parent>
 
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <groupId>org.opendaylight.controller</groupId>
-        <artifactId>config-parent</artifactId>
-        <version>0.6.0-SNAPSHOT</version>
-        <relativePath>../config-parent</relativePath>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>bundle-parent</artifactId>
+        <version>1.8.0-SNAPSHOT</version>
+        <relativePath/>
     </parent>
     </parent>
+
+    <groupId>org.opendaylight.controller</groupId>
     <artifactId>config-netty-config</artifactId>
     <artifactId>config-netty-config</artifactId>
+    <version>0.6.0-SNAPSHOT</version>
     <description>Configuration files for sal-rest-connector</description>
     <packaging>bundle</packaging>
     <description>Configuration files for sal-rest-connector</description>
     <packaging>bundle</packaging>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>attach-artifacts</id>
+                        <goals>
+                            <goal>attach-artifact</goal>
+                        </goals>
+                        <phase>package</phase>
+                        <configuration>
+                            <artifacts>
+                                <artifact>
+                                    <file>src/main/config/default-config.xml</file>
+                                    <type>xml</type>
+                                    <classifier>config</classifier>
+                                </artifact>
+                            </artifacts>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
 </project>
 </project>