diff options
Diffstat (limited to 'conductor/pom.xml')
-rw-r--r-- | conductor/pom.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/conductor/pom.xml b/conductor/pom.xml index db0f047..b18ac36 100644 --- a/conductor/pom.xml +++ b/conductor/pom.xml @@ -34,6 +34,24 @@ <build> <plugins> <plugin> + <artifactId>exec-maven-plugin</artifactId> + <groupId>org.codehaus.mojo</groupId> + <executions> + <execution> + <id>tox-test</id> + <phase>test</phase> + <goals> + <goal>exec</goal> + </goals> + <configuration> + <executable> + ${session.executionRootDirectory}/sonar.sh + </executable> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <appendAssemblyId>false</appendAssemblyId> |