Skip to content

Commit 1d90140

Browse files
Execute mexec-137 also on unix family
1 parent a7090d0 commit 1d90140

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
11
invoker.goals = clean test
2-
3-
invoker.os.family = windows
4-
invoker.debug = false
5-
invoker.buildResult = true

src/it/projects/mexec-137/pom.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
<version>0.0.1-SNAPSHOT</version>
1414
<packaging>pom</packaging>
1515

16+
<properties>
17+
<shellscript.qualifier></shellscript.qualifier>
18+
</properties>
19+
1620
<build>
1721
<plugins>
1822
<plugin>
@@ -26,7 +30,7 @@
2630
<goal>exec</goal>
2731
</goals>
2832
<configuration>
29-
<executable>test</executable>
33+
<executable>${shellscript.qualifier}test</executable>
3034
<workingDirectory>src/build</workingDirectory>
3135
</configuration>
3236
</execution>
@@ -35,4 +39,18 @@
3539
</plugins>
3640
</build>
3741

42+
<profiles>
43+
<profile>
44+
<id>Unix</id>
45+
<activation>
46+
<os>
47+
<family>unix</family>
48+
</os>
49+
</activation>
50+
<properties>
51+
<shellscript.qualifier>./</shellscript.qualifier>
52+
</properties>
53+
</profile>
54+
</profiles>
55+
3856
</project>

0 commit comments

Comments
 (0)