add profile to enable tck tests
Project: http://git-wip-us.apache.org/repos/asf/maven-scm/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-scm/commit/1ee4f515 Tree: http://git-wip-us.apache.org/repos/asf/maven-scm/tree/1ee4f515 Diff: http://git-wip-us.apache.org/repos/asf/maven-scm/diff/1ee4f515 Branch: refs/heads/master Commit: 1ee4f515d81ae0930e18e7d9c5b22e387aef475d Parents: f5b0c6c Author: Olivier Lamy <ol...@apache.org> Authored: Sat Jun 29 18:13:40 2013 +1000 Committer: Olivier Lamy <ol...@apache.org> Committed: Sat Jun 29 18:13:40 2013 +1000 ---------------------------------------------------------------------- pom.xml | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-scm/blob/1ee4f515/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 4bf55c7..7f87ba8 100644 --- a/pom.xml +++ b/pom.xml @@ -19,8 +19,7 @@ ~ under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> @@ -88,4 +87,23 @@ </plugins> </build> + <profiles> + <profile> + <id>tck-git</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludes> + <exclude>nothing</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> + </project>