Repository: syncope Updated Branches: refs/heads/master b1189529c -> b6e1de43c
[SYNCOPE-853] Fixing the skipTests profile Project: http://git-wip-us.apache.org/repos/asf/syncope/repo Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/b6e1de43 Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/b6e1de43 Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/b6e1de43 Branch: refs/heads/master Commit: b6e1de43c4cfd561189b42cdeef047ac969eed0f Parents: b118952 Author: Francesco Chicchiriccò <[email protected]> Authored: Tue Sep 6 08:35:37 2016 +0200 Committer: Francesco Chicchiriccò <[email protected]> Committed: Tue Sep 6 08:35:37 2016 +0200 ---------------------------------------------------------------------- fit/enduser-reference/pom.xml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/syncope/blob/b6e1de43/fit/enduser-reference/pom.xml ---------------------------------------------------------------------- diff --git a/fit/enduser-reference/pom.xml b/fit/enduser-reference/pom.xml index dabc4c3..a49b071 100644 --- a/fit/enduser-reference/pom.xml +++ b/fit/enduser-reference/pom.xml @@ -430,6 +430,10 @@ under the License. <profile> <id>skipTests</id> + <properties> + <skipTests>true</skipTests> + </properties> + <dependencies> <dependency> <groupId>com.h2database</groupId> @@ -440,6 +444,39 @@ under the License. <build> <plugins> <plugin> + <groupId>com.github.klieber</groupId> + <artifactId>phantomjs-maven-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-antrun-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + + <plugin> + <groupId>com.github.eirslett</groupId> + <artifactId>frontend-maven-plugin</artifactId> + <configuration> + <skip>true</skip> + <skipTests>true</skipTests> + </configuration> + </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + + <plugin> <groupId>org.codehaus.cargo</groupId> <artifactId>cargo-maven2-plugin</artifactId> <inherited>true</inherited>
