diff options
author | Patrick Brady <patrick.brady@att.com> | 2019-09-10 12:55:45 -0700 |
---|---|---|
committer | Patrick Brady <patrick.brady@att.com> | 2019-09-10 12:58:04 -0700 |
commit | fc942d29a74a843ccf1cd202091e6d9704bbed29 (patch) | |
tree | b1be0b7f8444f48da6dd1bdad3b76c8d93ae3b13 /appc-sdc-listener | |
parent | aa9685086bc7c9094aca1f11280f9db2434810d7 (diff) |
Fix eelf resource not found
The eelf package needs to be exported from appc-common
where the resource bundle is added. Doing this was
causing karaf to crash on install of artifact-handler.
The cause was all of the classes being exported by the
maven shade plugin of appc-yang-generator. Removing the
shade plugin seemed to have no bad consequences.
Change-Id: Ic0758b342b8109e28ec8e11a48b2693cea7b56db
Signed-off-by: Patrick Brady <patrick.brady@att.com>
Issue-ID: APPC-1713
Diffstat (limited to 'appc-sdc-listener')
-rw-r--r-- | appc-sdc-listener/appc-yang-generator/pom.xml | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/appc-sdc-listener/appc-yang-generator/pom.xml b/appc-sdc-listener/appc-yang-generator/pom.xml index 10060b593..57ed6a953 100644 --- a/appc-sdc-listener/appc-yang-generator/pom.xml +++ b/appc-sdc-listener/appc-yang-generator/pom.xml @@ -90,21 +90,6 @@ limitations under the License. <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-shade-plugin</artifactId> - <executions> - <execution> - <phase>package</phase> - <goals> - <goal>shade</goal> - </goals> - </execution> - </executions> - <configuration> - <finalName>${artifactId}-${version}</finalName> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> |