Skip to content

Commit

Permalink
Execute mexec-137 also on unix family
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Jan 28, 2024
1 parent a7090d0 commit 1d90140
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
4 changes: 0 additions & 4 deletions src/it/projects/mexec-137/invoker.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
invoker.goals = clean test

invoker.os.family = windows
invoker.debug = false
invoker.buildResult = true
20 changes: 19 additions & 1 deletion src/it/projects/mexec-137/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>

<properties>
<shellscript.qualifier></shellscript.qualifier>
</properties>

<build>
<plugins>
<plugin>
Expand All @@ -26,7 +30,7 @@
<goal>exec</goal>
</goals>
<configuration>
<executable>test</executable>
<executable>${shellscript.qualifier}test</executable>
<workingDirectory>src/build</workingDirectory>
</configuration>
</execution>
Expand All @@ -35,4 +39,18 @@
</plugins>
</build>

<profiles>
<profile>
<id>Unix</id>
<activation>
<os>
<family>unix</family>
</os>
</activation>
<properties>
<shellscript.qualifier>./</shellscript.qualifier>
</properties>
</profile>
</profiles>

</project>

0 comments on commit 1d90140

Please sign in to comment.