Repository: openmeetings Updated Branches: refs/heads/master 5b89d2296 -> 4262c72ee
[OPENMEETINGS-1665] attempt to fix tests Project: http://git-wip-us.apache.org/repos/asf/openmeetings/repo Commit: http://git-wip-us.apache.org/repos/asf/openmeetings/commit/4262c72e Tree: http://git-wip-us.apache.org/repos/asf/openmeetings/tree/4262c72e Diff: http://git-wip-us.apache.org/repos/asf/openmeetings/diff/4262c72e Branch: refs/heads/master Commit: 4262c72eee6e7b484743b83aaac9f62422c72ebf Parents: 5b89d22 Author: Maxim Solodovnik <[email protected]> Authored: Sun Jul 9 09:02:56 2017 +0700 Committer: Maxim Solodovnik <[email protected]> Committed: Sun Jul 9 09:08:51 2017 +0700 ---------------------------------------------------------------------- openmeetings-util/pom.xml | 17 +++++++++++++++++ openmeetings-web/pom.xml | 15 +++++++++++++++ 2 files changed, 32 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/openmeetings/blob/4262c72e/openmeetings-util/pom.xml ---------------------------------------------------------------------- diff --git a/openmeetings-util/pom.xml b/openmeetings-util/pom.xml index b56988d..976994a 100644 --- a/openmeetings-util/pom.xml +++ b/openmeetings-util/pom.xml @@ -60,6 +60,23 @@ </resource> </resources> </build> + <profiles> + <profile> + <id>Jenkins</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <inherited>true</inherited> + <configuration> + <excludedGroups>org.apache.openmeetings.util.NonJenkinsTests</excludedGroups> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> <dependencies> <dependency> <groupId>org.red5</groupId> http://git-wip-us.apache.org/repos/asf/openmeetings/blob/4262c72e/openmeetings-web/pom.xml ---------------------------------------------------------------------- diff --git a/openmeetings-web/pom.xml b/openmeetings-web/pom.xml index 8d4d994..2dfe911 100644 --- a/openmeetings-web/pom.xml +++ b/openmeetings-web/pom.xml @@ -48,6 +48,21 @@ </dependency> </dependencies> </profile> + <profile> + <id>Jenkins</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <inherited>true</inherited> + <configuration> + <excludedGroups>org.apache.openmeetings.test.selenium.SeleniumTests,org.apache.openmeetings.test.selenium.HeavyTests,org.apache.openmeetings.util.NonJenkinsTests</excludedGroups> + </configuration> + </plugin> + </plugins> + </build> + </profile> </profiles> <build> <plugins>
