mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00

To build and run only lsp4e-cpp tests do: mvn verify -P skip-tests-except-lsp4e-cpp Also-by: Jonah Graham <jonah@kichwacoders.com> Change-Id: Id6f3cd8ae291283c0cad7f1e63fbcdce683f4d2d
43 lines
1.7 KiB
XML
43 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.eclipse.cdt</groupId>
|
|
<artifactId>org.eclipse.lsp4e.cpp-parent</artifactId>
|
|
<version>9.6.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<artifactId>org.eclipse.lsp4e.cpp.language.tests</artifactId>
|
|
<packaging>eclipse-test-plugin</packaging>
|
|
|
|
<properties>
|
|
<skipTests>${lsp4e-cpp.skip.tests}</skipTests>
|
|
</properties>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>tycho-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<!-- If you have any UI tests, use this block -->
|
|
<useUIHarness>true</useUIHarness>
|
|
<useUIThread>true</useUIThread>
|
|
<argLine>${tycho.testArgLine} ${base.ui.test.vmargs}</argLine>
|
|
<!-- else, if you have no UI tests, use this block -->
|
|
<!-- <useUIHarness>false</useUIHarness>
|
|
<useUIThread>false</useUIThread>
|
|
<argLine>${tycho.testArgLine} ${base.test.vmargs}</argLine> -->
|
|
<!-- endif -->
|
|
<includes>
|
|
<include>**/*Test.*</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|