summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorCedric Beust <cedric@beust.com>2011-01-04 13:02:48 -0800
committerCedric Beust <cedric@beust.com>2011-01-04 13:02:48 -0800
commitb5598e97aa7d22a933223f6211d50329b1a20308 (patch)
treeafb37f4dd6dbde19edb3d0db4575be6e903af0b1 /pom.xml
parente5012b124d36eda59ffb69ca42dcd89637279716 (diff)
downloadplatform_external_jcommander-b5598e97aa7d22a933223f6211d50329b1a20308.tar.gz
platform_external_jcommander-b5598e97aa7d22a933223f6211d50329b1a20308.tar.bz2
platform_external_jcommander-b5598e97aa7d22a933223f6211d50329b1a20308.zip
Added testng.xml and now running the tests directly with TestNG instead of Maven.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml9
1 files changed, 6 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 6e20b65..f13fa35 100644
--- a/pom.xml
+++ b/pom.xml
@@ -159,21 +159,24 @@
</plugin>
<!-- Tests -->
-<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <version>2.7</version>
+ <version>2.7.1</version>
+ <configuration>
+ <skipTests>true</skipTests>
+ </configuration>
<dependencies>
<dependency>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<version>${project.version}</version>
+<!--
<version>1.13</version>
+-->
</dependency>
</dependencies>
</plugin>
--->
<!-- Generating Javadoc -->
<plugin>