427d469347
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/tycho.git#3a6b64e698aca93760e544bc3739e4b0d934dcd9
32 lines
1.4 KiB
Diff
32 lines
1.4 KiB
Diff
From 3ad22ed9fa3d227fa0d508c333be9319d9082fc6 Mon Sep 17 00:00:00 2001
|
|
From: Mat Booth <mat.booth@redhat.com>
|
|
Date: Thu, 20 Feb 2020 16:08:00 +0000
|
|
Subject: [PATCH 4/7] Fix uncaught exception
|
|
|
|
"unreported exception org.codehaus.plexus.configuration.PlexusConfigurationException; must be caught or declared to be thrown"
|
|
---
|
|
.../tycho/extras/sourcefeature/SourceFeatureMojo.java | 7 ++++++-
|
|
1 file changed, 6 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/tycho-extras/tycho-source-feature-plugin/src/main/java/org/eclipse/tycho/extras/sourcefeature/SourceFeatureMojo.java b/tycho-extras/tycho-source-feature-plugin/src/main/java/org/eclipse/tycho/extras/sourcefeature/SourceFeatureMojo.java
|
|
index 36f1eed..87815d1 100644
|
|
--- a/tycho-extras/tycho-source-feature-plugin/src/main/java/org/eclipse/tycho/extras/sourcefeature/SourceFeatureMojo.java
|
|
+++ b/tycho-extras/tycho-source-feature-plugin/src/main/java/org/eclipse/tycho/extras/sourcefeature/SourceFeatureMojo.java
|
|
@@ -576,7 +576,12 @@ public class SourceFeatureMojo extends AbstractMojo {
|
|
}
|
|
|
|
private String getAttribute(PlexusConfiguration dom, String attrName) {
|
|
- String attr = dom.getAttribute(attrName);
|
|
+ String attr = null;
|
|
+ try {
|
|
+ attr = dom.getAttribute(attrName);
|
|
+ } catch (Exception ex) {
|
|
+ attr = null;
|
|
+ }
|
|
if (attr == null) {
|
|
return null;
|
|
}
|
|
--
|
|
2.28.0
|
|
|