Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7501819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T20:39:50+00:00 2026-05-29T20:39:50+00:00

Is it possible to run a maven test build ( mvn clean test )

  • 0

Is it possible to run a maven test build (mvn clean test) in a multi module maven project and to skip/ignore a particular module’s test? like -Dmaven.test.skip=true but for a particular module and not all the modules? I dont want to change the surefire <configuration> to include <skipTests>true</skipTests> for the module which I want to skip for tests. I wanted to know if this can be done from command line. I need this because in my project I’ve many modules and particular one or two takes really long to execute test, so when I want to test only couple of modules I’d like to skip these time taking modules to which I’ve not made any changes.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T20:39:51+00:00Added an answer on May 29, 2026 at 8:39 pm

    Is is really a problem for you to change the configuration of the surefire plugin ? Because you could change it one time only in your module …

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.12</version>
                <configuration>
                    <skipTests>${skip.foo.module.tests}</skipTests>
                </configuration>
            </plugin>
        </plugins>
    </build>
    

    … and delegate the true/false value of the skipTests tag to a maven property, activated by a dedicated profile :

    <properties>
        <skip.foo.module.tests>false</skip.foo.module.tests>
    </properties>
    
    <profiles>
        <profile>
            <id>SKIP_FOO_MODULE_TESTS</id>
            <properties>
                <skip.foo.module.tests>true</skip.foo.module.tests>
            </properties>
        </profile>
    </profiles>
    

    So that you could deactivate the tests in Foo module with the command line :

    mvn clean test -P SKIP_FOO_MODULE_TESTS

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to configure run as maven install in eclipse to skip unit
Is it possible to generate a maven stub project via mvn archetype:generate that has
I have a maven multi-module project (boy, I've written that opening way too many
Is it possible to instruct maven-surefire-plugin to run just one unit test? And of
Maven newbie question :) For 'war' packaging, war:war default goal run in 'package' build
I'm using Maven 3.0.3. Is it possible to include a dependency for my test
is it possible to run spring mvc application on tomcat(with this plugin http://mojo.codehaus.org/tomcat-maven-plugin/ )
From the command line, the maven-gae-plugin can be run by calling: mvn gae:run I
Using only MySQL , I'm seeing if it's possible run an insert statement ONLY
Is it possible to run an external process from Perl, capture its stderr, stdout

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.