You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by fp...@apache.org on 2019/06/01 06:16:20 UTC

[shiro] branch master updated: Move integration-tests and test-coverage modules to 'ci' profile, add fast profile

This is an automated email from the ASF dual-hosted git repository.

fpapon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shiro.git


The following commit(s) were added to refs/heads/master by this push:
     new bc5240d  Move integration-tests and test-coverage modules to 'ci' profile, add fast profile
     new 415e259  Merge pull request #137 from fpapon/BUILD
bc5240d is described below

commit bc5240d3a18d0e27dab817dfa1f77ed98877c0c0
Author: Francois Papon <fp...@apache.org>
AuthorDate: Tue May 28 03:26:18 2019 +0400

    Move integration-tests and test-coverage modules to 'ci' profile, add fast profile
---
 pom.xml | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 4573525..1deb731 100644
--- a/pom.xml
+++ b/pom.xml
@@ -69,6 +69,7 @@
         <shiro.previousVersion>1.4.1</shiro.previousVersion>
         <!-- Replaced by the build number plugin at build time: -->
         <buildNumber>${user.name}-${maven.build.timestamp}</buildNumber>
+        <jacoco.skip>true</jacoco.skip>
 
         <!-- non-dependency-based properties: -->
         <shiro.osgi.importRange>[1.2, 2)</shiro.osgi.importRange>
@@ -139,9 +140,9 @@
         <module>core</module>
         <module>web</module>
         <module>support</module>
-        <module>samples</module>
         <module>tools</module>
         <module>all</module>
+        <module>samples</module>
         <module>integration-tests</module>
         <module>test-coverage</module>
     </modules>
@@ -1355,6 +1356,16 @@
 
     <profiles>
         <profile>
+            <id>fast</id>
+            <properties>
+                <maven.test.skip.exec>true</maven.test.skip.exec>
+                <maven.test.skip>true</maven.test.skip>
+            </properties>
+            <build>
+                <defaultGoal>install</defaultGoal>
+            </build>
+        </profile>
+        <profile>
             <id>jdk8</id>
             <activation>
                 <jdk>[1.8,)</jdk>
@@ -1457,6 +1468,9 @@
         </profile>
         <profile>
             <id>ci</id>
+            <properties>
+                <jacoco.skip>false</jacoco.skip>
+            </properties>
             <build>
                 <plugins>
                     <plugin>