diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -175,13 +175,27 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <version>2.12.4</version> + <version>2.19.1</version> <configuration> <includes> <include>com/iciql/test/IciqlSuite.java</include> </includes> </configuration> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.4.0</version> + <configuration> + <executable>java</executable> + <classpathScope>test</classpathScope> + <arguments> + <argument>-classpath</argument> + <classpath/> + <argument>com.iciql.test.IciqlSuite</argument> + </arguments> + </configuration> + </plugin> <!-- Release plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> |