summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorGeorge Fraser <george@fivetran.com>2018-06-28 11:04:27 -0700
committerGeorge Fraser <george@fivetran.com>2018-06-28 11:04:27 -0700
commit9b66c6aea292d1aeec178ccf69f9605cdf3b4801 (patch)
tree37e13046ebf85e8605c6644002f06d28bab7e565 /pom.xml
parent7dc50d85c251b43da164b5e6a90b7015e9947ef9 (diff)
downloadjava-language-server-9b66c6aea292d1aeec178ccf69f9605cdf3b4801.zip
Switch to standard javac
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml25
1 files changed, 6 insertions, 19 deletions
diff --git a/pom.xml b/pom.xml
index 693e05d..6ae49c2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,14 +7,6 @@
<artifactId>javac-services</artifactId>
<packaging>jar</packaging>
<version>0.1-SNAPSHOT</version>
- <repositories>
- <!-- Local repository with tools.jar -->
- <repository>
- <id>jars-repository</id>
- <name>Local repository for JAR files</name>
- <url>file://${basedir}/repo</url>
- </repository>
- </repositories>
<distributionManagement>
<repository>
<id>distribution-repository</id>
@@ -23,14 +15,9 @@
</repository>
</distributionManagement>
<properties>
- <jackson-2-version>2.5.0</jackson-2-version>
+ <jackson-2-version>2.9.6</jackson-2-version>
</properties>
<dependencies>
- <dependency>
- <groupId>com.sun</groupId>
- <artifactId>tools</artifactId>
- <version>1.8</version>
- </dependency>
<!-- Java implementation of VS Code language server protocol -->
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
@@ -97,14 +84,14 @@
</dependencies>
<build>
<plugins>
- <!-- Set source 1.8 -->
+ <!-- Set source 1.10 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>3.3</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
+ <version>3.7.0</version>
+ <configuration>com.sun.tools.javac
+ <source>10</source>
+ <target>10</target>
</configuration>
</plugin>
<!-- Configure fat jar -->