diff options
author | Georgie <george@fivetran.com> | 2016-03-19 10:58:34 -0700 |
---|---|---|
committer | Georgie <george@fivetran.com> | 2016-03-19 10:58:34 -0700 |
commit | af0ce655c0632fa333f3e69172160574abc97ccc (patch) | |
tree | d5f64f33dd2de5f67bb589e4373345c948a6815a /pom.xml | |
parent | 6c95cce2844a61fe3c80a295f7a1efe79361b2f5 (diff) | |
download | java-language-server-af0ce655c0632fa333f3e69172160574abc97ccc.zip |
Get classpath from file
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -100,6 +100,24 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <version>2.9</version> + <executions> + <execution> + <id>build-classpath</id> + <phase>generate-sources</phase> + <goals> + <goal>build-classpath</goal> + </goals> + </execution> + </executions> + <configuration> + <outputFile>classpath.txt</outputFile> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.4.1</version> <executions> |