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.test/build.properties | |
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.test/build.properties')
-rw-r--r-- | org.eclipse.jgit.test/build.properties | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.jgit.test/build.properties b/org.eclipse.jgit.test/build.properties index e7b3b9978e..7dc26c0b0d 100644 --- a/org.eclipse.jgit.test/build.properties +++ b/org.eclipse.jgit.test/build.properties @@ -4,6 +4,8 @@ source.. = tst/,\ src/ bin.includes = META-INF/,\ .,\ - plugin.properties + plugin.properties,\ + bin-tst/,\ + bin/ additional.bundles = org.apache.log4j,\ org.slf4j.impl.log4j12 |