85 lines
2.4 KiB
XML
85 lines
2.4 KiB
XML
<project xmlns="https://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<packaging>eclipse-test-plugin</packaging>
|
|
<groupId>org.springframework.ide.vscode</groupId>
|
|
<artifactId>org.springframework.tooling.jdt.ls.commons.test</artifactId>
|
|
<version>4.4.2-SNAPSHOT</version>
|
|
<name>org.springframework.tooling.jdt.ls.commons.test</name>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.tooling</groupId>
|
|
<artifactId>jdt-ls-extension-parent</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<properties>
|
|
<test.argLine></test.argLine>
|
|
</properties>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>osx</id>
|
|
<activation>
|
|
<os>
|
|
<family>mac</family>
|
|
</os>
|
|
</activation>
|
|
<properties>
|
|
<test.argLine>-XstartOnFirstThread</test.argLine>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>target-platform-configuration</artifactId>
|
|
<version>${tycho-version}</version>
|
|
<configuration>
|
|
<dependency-resolution>
|
|
<extraRequirements>
|
|
<requirement>
|
|
<type>eclipse-feature</type>
|
|
<id>org.eclipse.jdt</id>
|
|
<versionRange>0.0.0</versionRange>
|
|
</requirement>
|
|
<requirement>
|
|
<type>eclipse-feature</type>
|
|
<id>org.eclipse.platform</id>
|
|
<versionRange>0.0.0</versionRange>
|
|
</requirement>
|
|
<requirement>
|
|
<type>eclipse-feature</type>
|
|
<id>org.eclipse.rcp</id>
|
|
<versionRange>0.0.0</versionRange>
|
|
</requirement>
|
|
<requirement>
|
|
<type>eclipse-feature</type>
|
|
<id>org.eclipse.m2e.feature</id>
|
|
<versionRange>0.0.0</versionRange>
|
|
</requirement>
|
|
</extraRequirements>
|
|
</dependency-resolution>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>tycho-surefire-plugin</artifactId>
|
|
<version>${tycho-version}</version>
|
|
<configuration>
|
|
<forkedProcessTimeoutInSeconds>200</forkedProcessTimeoutInSeconds>
|
|
<includes>**/*Test.java</includes>
|
|
<useUIHarness>true</useUIHarness>
|
|
<argLine>${test.argLine}</argLine>
|
|
<trimStackTrace>false</trimStackTrace>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|