From: Tuukka Lehtonen Date: Tue, 7 May 2019 12:43:04 +0000 (+0300) Subject: Changed scldoc output directory to target/scldoc X-Git-Tag: v1.43.0~136^2~156 X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=commitdiff_plain;h=67d1ff951a69055ba9c139aa8955c684b1b2ca03;ds=sidebyside Changed scldoc output directory to target/scldoc This allows mvn clean to clean previously generated scldoc also. gitlab #293 Change-Id: Ifc53c7200ae1799cb19a736de9f26e125a6cc3c8 --- diff --git a/tests/org.simantics.scl.osgi.tests/src/org/simantics/scl/osgi/tests/TestSCLOsgi.java b/tests/org.simantics.scl.osgi.tests/src/org/simantics/scl/osgi/tests/TestSCLOsgi.java index 227381147..700c42b0e 100644 --- a/tests/org.simantics.scl.osgi.tests/src/org/simantics/scl/osgi/tests/TestSCLOsgi.java +++ b/tests/org.simantics.scl.osgi.tests/src/org/simantics/scl/osgi/tests/TestSCLOsgi.java @@ -53,7 +53,7 @@ public class TestSCLOsgi { @Test public void exportAllSCLDocumentation() throws IOException { // "./scldoc" evaluates to "tests/org.simantics.scl.osgi.tests/scldoc" when these tests are ran with Tycho/Maven - Path dir = Paths.get("./scldoc"); + Path dir = Paths.get("./target/scldoc"); Files.createDirectories(dir); GenerateAllHtmlDocumentation.generate(SCLOsgi.MODULE_REPOSITORY, dir); }