Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/META-INF/MANIFEST.MF1
-rw-r--r--plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/build.properties2
-rw-r--r--tests/junit/extraplugins/migration/org.eclipse.papyrus.migration.rsa.tests/src/org/eclipse/papyrus/migration/rsa/tests/qvt/AbstractTransformationTest.java2
3 files changed, 4 insertions, 1 deletions
diff --git a/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/META-INF/MANIFEST.MF b/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/META-INF/MANIFEST.MF
index 6f8ab7982b8..bac811c5208 100644
--- a/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/META-INF/MANIFEST.MF
+++ b/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/META-INF/MANIFEST.MF
@@ -36,3 +36,4 @@ Bundle-Vendor: %providerName
Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.papyrus.uml.profile.drafter.exceptions,
org.eclipse.papyrus.uml.profile.drafter.ui.handler
+Bundle-Localization: plugin
diff --git a/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/build.properties b/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/build.properties
index f2b13090d59..9bf79af851e 100644
--- a/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/build.properties
+++ b/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter/build.properties
@@ -6,4 +6,4 @@ bin.includes = META-INF/,\
plugin.properties,\
about.html,\
icons/
-src.includes = about.html,icons/
+src.includes = about.html
diff --git a/tests/junit/extraplugins/migration/org.eclipse.papyrus.migration.rsa.tests/src/org/eclipse/papyrus/migration/rsa/tests/qvt/AbstractTransformationTest.java b/tests/junit/extraplugins/migration/org.eclipse.papyrus.migration.rsa.tests/src/org/eclipse/papyrus/migration/rsa/tests/qvt/AbstractTransformationTest.java
index 816720e43ae..1f67fed5697 100644
--- a/tests/junit/extraplugins/migration/org.eclipse.papyrus.migration.rsa.tests/src/org/eclipse/papyrus/migration/rsa/tests/qvt/AbstractTransformationTest.java
+++ b/tests/junit/extraplugins/migration/org.eclipse.papyrus.migration.rsa.tests/src/org/eclipse/papyrus/migration/rsa/tests/qvt/AbstractTransformationTest.java
@@ -75,6 +75,8 @@ public class AbstractTransformationTest extends AbstractPapyrusTest {
launcher.run(Collections.singletonList(sourceURI));
launcher.waitForCompletion();
+
+ Assert.assertTrue("The transformation didn't complete normally", launcher.getResult().isOK());
} else {
ImportTransformation transformation = new ImportTransformation(sourceURI);
transformation.run(false);

Back to the top