Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In pom.xml I have declaration like this

    <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <executions>
                    <execution>
                            <id>attach-javadocs</id>
                            <goals>
                                    <goal>jar</goal>
                            </goals>
                    </execution>
            </executions>
    </plugin>

is there any way to turn that off from command line?

P.S. I do know I can extract that into a profile, but that is not what I want.

share|improve this question

2 Answers

up vote 12 down vote accepted

The Javadoc generation can be skipped by setting the property maven.javadoc.skip to true [1], i.e.

-Dmaven.javadoc.skip=true

(and not false)

share|improve this answer
1  
What's the point of repeating @Vineet Reynolds answer 6 months after ? – Snicolas Dec 15 '12 at 12:20
1  
@Snicolas his answer got the boolean wrong. – Thorbjørn Ravn Andersen Feb 27 at 11:51

You can use the maven.javadoc.skip property to skip execution of the plugin, going by the Mojo's javadoc. You can specify the value as a Maven property:

<properties>
    <maven.javadoc.skip>false</maven.javadoc.skip>
</properties>

or as a command-line argument: -Dmaven.javadoc.skip=false, to skip generation of the Javadocs.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.