diff options
author | James Moger <james.moger@gitblit.com> | 2016-04-05 12:22:38 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2016-04-05 12:22:38 -0400 |
commit | 98bb5dc01796728de5b18f84e19766276d12d1db (patch) | |
tree | defa94bae8ac9362c2850652e70fe3bfeceabb5c /pom.xml | |
parent | 511e76081ea8411f286e3e0b017323a8b02aab0f (diff) | |
download | iciql-98bb5dc01796728de5b18f84e19766276d12d1db.tar.gz iciql-98bb5dc01796728de5b18f84e19766276d12d1db.zip |
Finished Maven migration
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> |