maven.rst
changeset 1446 6c935c71520e
parent 1445 4920ffd155a4
child 1447 d4399aacf09e
equal deleted inserted replaced
1445:4920ffd155a4 1446:6c935c71520e
    56 =========================
    56 =========================
    57 ::
    57 ::
    58 
    58 
    59   mvn exec:java -Dexec.mainClass="com.vineetmanohar.module.Main" -Dexec.args="arg0 arg1 arg2"
    59   mvn exec:java -Dexec.mainClass="com.vineetmanohar.module.Main" -Dexec.args="arg0 arg1 arg2"
    60 
    60 
       
    61 How to run single unit test?
       
    62 ============================
       
    63 ::
       
    64 
       
    65   $ mvn test -Dtest=SeriousComponentTest
       
    66 
    61 How do I skip the tests during the default lifecycle?
    67 How do I skip the tests during the default lifecycle?
    62 =====================================================
    68 =====================================================
    63 ::
    69 ::
    64 
    70 
    65   $ mvn -DskipTests package
    71   $ mvn -DskipTests package