Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[Wtp-wst-dev] Disabling validation during incremental build

Hi,

     I'm adding a new validator in our plugin to validate do some
project specific validation. I want this validator to run only during
full build and disable it during the incremental build. I've set the
incremental = false in the plugin.xml
...
       <run
          async="false"
          class="com.example.MyValidator"
          enabled="true"
          fullBuild="true"
          incremental="false">
       </run>
    </validator>


   But still this class is called during incremental builds. Am I
missing anything?

-Prakash


Back to the top