summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Fraser <george@fivetran.com>2017-04-15 22:28:51 -0700
committerGeorge Fraser <george@fivetran.com>2017-04-15 22:28:51 -0700
commite428fff73865d03260a09336ac7b81514bb20c45 (patch)
tree65e6fbe5650dc2335ee3d8f414fcf448bc6b9a53
parent1fbe7bc7e27df24563fd978225b7109fb939b0cd (diff)
downloadjava-language-server-e428fff73865d03260a09336ac7b81514bb20c45.zip
docpath.txt
-rw-r--r--.gitignore3
-rw-r--r--javaconfig.json2
-rw-r--r--pom.xml11
3 files changed, 15 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 6632c49..dd4882f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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
diff --git a/pom.xml b/pom.xml
index f1043be..0f96dc7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>