* updated java indexer dependencies * replaced old gradle tooling jar that is shipped with Sourcetrail because it is not working for new JRE versions anymore * fixed crash in Java indexer * added language standard sleection for Java 13, 14 and 15 * fixed console logging for recent jdk versions
162 lines
5.3 KiB
XML
162 lines
5.3 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.sourcetrail</groupId>
|
|
<artifactId>java-indexer</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>1.0</version>
|
|
<name>java_indexer</name>
|
|
<url>http://maven.apache.org</url>
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.2</version>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>mvnrepository</id>
|
|
<name>mvnrepository</name>
|
|
<url>https://www.mvnrepository.com</url>
|
|
</repository>
|
|
<repository>
|
|
<id>repo_gradle</id>
|
|
<name>repo_gradle</name>
|
|
<url>https://repo.gradle.org/gradle/libs-releases-local</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.gradle</groupId>
|
|
<artifactId>gradle-tooling-api</artifactId>
|
|
<version>6.7.1</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/gradle-tooling-api-6.7.1.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.core</groupId>
|
|
<artifactId>org.eclipse.core.commands</artifactId>
|
|
<version>3.9.800</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/org.eclipse.core.commands-3.9.800.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.core</groupId>
|
|
<artifactId>org.eclipse.core.contenttype</artifactId>
|
|
<version>3.7.800</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/org.eclipse.core.contenttype-3.7.800.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.core</groupId>
|
|
<artifactId>org.eclipse.core.expressions</artifactId>
|
|
<version>3.7.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/org.eclipse.core.expressions-3.7.0.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.core</groupId>
|
|
<artifactId>org.eclipse.core.filesystem</artifactId>
|
|
<version>1.7.500</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/org.eclipse.core.filesystem-1.7.700.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.core</groupId>
|
|
<artifactId>org.eclipse.core.jobs</artifactId>
|
|
<version>3.10.1000</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/org.eclipse.core.jobs-3.10.1000.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.core</groupId>
|
|
<artifactId>org.eclipse.core.resources</artifactId>
|
|
<version>3.13.900</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/org.eclipse.core.resources-3.13.900.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.core</groupId>
|
|
<artifactId>org.eclipse.core.runtime</artifactId>
|
|
<version>3.20.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/org.eclipse.core.runtime-3.20.0.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.equinox</groupId>
|
|
<artifactId>org.eclipse.equinox.app</artifactId>
|
|
<version>1.5.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/org.eclipse.equinox.app-1.5.0.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.equinox</groupId>
|
|
<artifactId>org.eclipse.equinox.common</artifactId>
|
|
<version>3.14.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/org.eclipse.equinox.common-3.14.0.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.equinox</groupId>
|
|
<artifactId>org.eclipse.equinox.preferences</artifactId>
|
|
<version>3.8.100</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/org.eclipse.equinox.preferences-3.8.100.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.equinox</groupId>
|
|
<artifactId>org.eclipse.equinox.registry</artifactId>
|
|
<version>3.10.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/org.eclipse.equinox.registry-3.10.0.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jdt</groupId>
|
|
<artifactId>org.eclipse.jdt.core</artifactId>
|
|
<version>3.24.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/org.eclipse.jdt.core-3.24.0.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse</groupId>
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
|
<version>3.16.100</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/org.eclipse.osgi-3.16.100.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse</groupId>
|
|
<artifactId>org.eclipse.text</artifactId>
|
|
<version>3.10.400</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/org.eclipse.text-3.10.400.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.7.28</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/slf4j-api-1.7.28.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<version>1.7.30</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/lib/slf4j-simple-1.7.30.jar</systemPath>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|