Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] How to add test specific plugin config?

Hello,
 
How can I add test specific build configuraion in my test POM. For example I have multiple tests and in project and I want some of them to use UIharness. Pasting part of my test POM
 
<build>
<plugins>
  <plugin>
    <groupId>org.eclipse.tycho</groupId>
    <artifactId>tycho-surefire-plugin</artifactId>
    <version>${tycho.version}</version>
    <configuration>
      <useUIHarness>true</useUIHarness>
      <useUIThread>false</useUIThread>
      <argLine>-Xms40m -Xmx512m</argLine>
    </configuration>
  </plugin>
</plugins>
</build>
Now I want this configuration to be enabled for some specific tests. How can I make it test specific?
 
--
God bless you all,
Ramesh

Back to the top