Small fix to insure correct running offline.
authorEd Warnicke <eaw@cisco.com>
Tue, 31 Mar 2015 14:03:37 +0000 (10:03 -0400)
committerEd Warnicke <eaw@cisco.com>
Tue, 31 Mar 2015 15:01:20 +0000 (15:01 +0000)
commit1c66eb133fe44a544bcccf5f8940fb3266372367
tree547abe95e2ee5972e2abd3319b004bc045049775
parentfcf0eff407d8b0aabc08ec5a8e4bc40c70a58d06
Small fix to insure correct running offline.

The southbound-impl features depend on the config file, not
just on the southbound-impl bundle.

<groupId>org.opendaylight.ovsdb</groupId>
<artifiactId>southbound-impl</artifactId>

is the *bundle* dependency.

<groupId>org.opendaylight.ovsdb</groupId>
<artifiactId>southbound-impl</artifactId>
<type>xml</type>
<classifier>config</classifier>

is a distinct artifact for the config file.

By failing to depend on the config file, the
southbound-impl feature will not work correctly in
offline mode.

Change-Id: Iab4ba7225f30aac19b45267da33c3a6219488b4a
Signed-off-by: Ed Warnicke <eaw@cisco.com>