Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian W. Damus2015-01-20 14:48:39 +0000
committerChristian W. Damus2015-01-20 14:48:39 +0000
commit5ebd5b7f1593c61b4c4f2a7eda1747eff6dc87e4 (patch)
tree75e0a94bb8d3ce4be3cbc2953c87e4012579db19
parent1fc478d0127b32cc3eeb6fe83f01eea47af4ccf1 (diff)
downloadorg.eclipse.papyrus-5ebd5b7f1593c61b4c4f2a7eda1747eff6dc87e4.tar.gz
org.eclipse.papyrus-5ebd5b7f1593c61b4c4f2a7eda1747eff6dc87e4.tar.xz
org.eclipse.papyrus-5ebd5b7f1593c61b4c4f2a7eda1747eff6dc87e4.zip
457942: [Profile Drafter] Documentation bundle classpath error on missing src/ folder
https://bugs.eclipse.org/bugs/show_bug.cgi?id=457942 Fix classpath errors and build.properties warnings.
-rw-r--r--plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.documentation/.classpath1
-rw-r--r--plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.documentation/build.properties20
2 files changed, 12 insertions, 9 deletions
diff --git a/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.documentation/.classpath b/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.documentation/.classpath
index 8a8f1668cdc..78d5ded0fee 100644
--- a/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.documentation/.classpath
+++ b/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.documentation/.classpath
@@ -2,6 +2,5 @@
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
- <classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
diff --git a/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.documentation/build.properties b/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.documentation/build.properties
index 6a2717b4c62..066f595391f 100644
--- a/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.documentation/build.properties
+++ b/plugins/uml/profile/org.eclipse.papyrus.uml.profile.drafter.documentation/build.properties
@@ -1,12 +1,16 @@
-source.. = src/
-output.. = bin/
+# Copyright (c) 201, 2015 Cedric Dumoulin, Christian W. Damus, and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# Cedric Dumoulin Cedric.dumoulin@lifl.fr - Initial API and implementation
+# Christian W. Damus - bug 457942
+#
bin.includes = META-INF/,\
- .,\
about.html,\
plugin.properties
src.includes = about.html,\
- META-INF/,\
- guides/,\
- models/,\
- src/,\
- plugin.properties
+ models/

Back to the top