diff options
author | Thomas Wolf <thomas.wolf@paranor.ch> | 2018-11-01 13:53:25 +0100 |
---|---|---|
committer | Thomas Wolf <thomas.wolf@paranor.ch> | 2018-11-02 18:50:26 +0100 |
commit | bb5180469c77ad935f7d3d49d063eb172d57e3ea (patch) | |
tree | b361fab4e5a155e1ad2c206149120a5c2eba9a94 /org.eclipse.jgit.junit/.classpath | |
parent | 9175099e48ee5a443feaa692dfa725d84ee21282 (diff) | |
download | jgit-bb5180469c77ad935f7d3d49d063eb172d57e3ea.tar.gz jgit-bb5180469c77ad935f7d3d49d063eb172d57e3ea.zip |
Fix test setup for Eclipse Photon and greater
When a source folder is marked as a test folder, JDT requires that it
has an output folder different from the one used for regular sources.
Therefore give the test folders in org.eclipse.jgit.test a separate
output folder "bin-tst".
Moreover JDT reports errors if non-test classes have dependencies on
test classes. Therefore remove the "test" annotation from
org.eclipse.jgit.junit.
Change-Id: Ib527439ff5b7d7b570b8a60819ecaa70f59c63a3
Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
Diffstat (limited to 'org.eclipse.jgit.junit/.classpath')
-rw-r--r-- | org.eclipse.jgit.junit/.classpath | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/org.eclipse.jgit.junit/.classpath b/org.eclipse.jgit.junit/.classpath index 3e5654f17e..eca7bdba8f 100644 --- a/org.eclipse.jgit.junit/.classpath +++ b/org.eclipse.jgit.junit/.classpath @@ -2,10 +2,6 @@ <classpath> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/> <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> - <classpathentry kind="src" path="src"> - <attributes> - <attribute name="test" value="true"/> - </attributes> - </classpathentry> + <classpathentry kind="src" path="src"/> <classpathentry kind="output" path="bin"/> </classpath> |