diff options
author | George Fraser <george@fivetran.com> | 2017-04-15 22:28:51 -0700 |
---|---|---|
committer | George Fraser <george@fivetran.com> | 2017-04-15 22:28:51 -0700 |
commit | e428fff73865d03260a09336ac7b81514bb20c45 (patch) | |
tree | 65e6fbe5650dc2335ee3d8f414fcf448bc6b9a53 | |
parent | 1fbe7bc7e27df24563fd978225b7109fb939b0cd (diff) | |
download | java-language-server-e428fff73865d03260a09336ac7b81514bb20c45.zip |
docpath.txt
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | javaconfig.json | 2 | ||||
-rw-r--r-- | pom.xml | 11 |
3 files changed, 15 insertions, 1 deletions
@@ -8,4 +8,5 @@ target dependency-reduced-pom.xml *.vsix classpath.txt -test-classpath.txt
\ No newline at end of file +test-classpath.txt +docpath.txt
\ No newline at end of file diff --git a/javaconfig.json b/javaconfig.json index d5949a1..ed04758 100644 --- a/javaconfig.json +++ b/javaconfig.json @@ -1,10 +1,12 @@ [{ "sourcePath": ["src/main/java"], "classPathFile": "classpath.txt", + "docPathFile": "docpath.txt", "outputDirectory": "target/classes" }, { "sourcePath": ["src/test/java"], "classPath": ["target/classes"], "classPathFile": "test-classpath.txt", + "docPathFile": "docpath.txt", "outputDirectory": "target/test-classes" }]
\ No newline at end of file @@ -167,6 +167,17 @@ <outputFile>test-classpath.txt</outputFile> </configuration> </execution> + <execution> + <id>docpath</id> + <phase>generate-sources</phase> + <goals> + <goal>build-classpath</goal> + </goals> + <configuration> + <outputFile>docpath.txt</outputFile> + <classifier>sources</classifier> + </configuration> + </execution> </executions> </plugin> </plugins> |