Skip to content

Commit a15c326

Browse files
Merge pull request #1521 from ISISComputingGroup/run_the_tests
Run the tests in the GUI
2 parents 9d69af5 + b710d23 commit a15c326

File tree

2 files changed

+42
-13
lines changed
  • base
    • uk.ac.stfc.isis.ibex.client.tycho.parent
    • uk.ac.stfc.isis.ibex.model.tests

2 files changed

+42
-13
lines changed

base/uk.ac.stfc.isis.ibex.client.tycho.parent/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,8 @@
254254
<module>../uk.ac.stfc.isis.ibex.dae.tests</module>
255255
<module>../uk.ac.stfc.isis.ibex.ui.ioccontrol.tests</module>
256256
<module>../uk.ac.stfc.isis.ibex.ui.graphing.tests</module>
257+
<module>../uk.ac.stfc.isis.ibex.model.tests</module>
258+
<module>../uk.ac.stfc.isis.ibex.logger.tests</module>
257259
</modules>
258260
</project>
259261

Lines changed: 40 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,46 @@
11
<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/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
3-
<groupId>uk.ac.stfc.isis.ibex.model.tests</groupId>
43
<artifactId>uk.ac.stfc.isis.ibex.model.tests</artifactId>
5-
<version>0.0.1-SNAPSHOT</version>
4+
<packaging>eclipse-test-plugin</packaging>
5+
<parent>
6+
<groupId>CSS_ISIS</groupId>
7+
<version>1.0.0-SNAPSHOT</version>
8+
<relativePath>../uk.ac.stfc.isis.ibex.client.tycho.parent</relativePath>
9+
<artifactId>uk.ac.stfc.isis.ibex.client.tycho.parent</artifactId>
10+
</parent>
611
<build>
7-
<sourceDirectory>src</sourceDirectory>
8-
<plugins>
9-
<plugin>
10-
<artifactId>maven-compiler-plugin</artifactId>
11-
<version>3.5.1</version>
12-
<configuration>
13-
<source/>
14-
<target/>
15-
</configuration>
16-
</plugin>
17-
</plugins>
12+
<pluginManagement>
13+
<plugins>
14+
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
15+
<plugin>
16+
<groupId>org.eclipse.m2e</groupId>
17+
<artifactId>lifecycle-mapping</artifactId>
18+
<version>1.0.0</version>
19+
<configuration>
20+
<lifecycleMappingMetadata>
21+
<pluginExecutions>
22+
<pluginExecution>
23+
<pluginExecutionFilter>
24+
<groupId>org.jacoco</groupId>
25+
<artifactId>
26+
jacoco-maven-plugin
27+
</artifactId>
28+
<versionRange>
29+
[0.7.4.201502262128,)
30+
</versionRange>
31+
<goals>
32+
<goal>prepare-agent</goal>
33+
</goals>
34+
</pluginExecutionFilter>
35+
<action>
36+
<ignore></ignore>
37+
</action>
38+
</pluginExecution>
39+
</pluginExecutions>
40+
</lifecycleMappingMetadata>
41+
</configuration>
42+
</plugin>
43+
</plugins>
44+
</pluginManagement>
1845
</build>
1946
</project>

0 commit comments

Comments
 (0)