How do you disable all compiler warnings from headless PDE builds of Eclipse plugins?
I know I can do something like this in the build.properties:
javacWarnings..=-deadCode
To disable specific warnings by ID, but the documentation is not very explicit.
I have 2 questions:
The answer is thisL in the build.properties file of every plugin project, add the line:
compilerArg=-nowarn
It does not seem to work if I put that line in the build.properties of a feature or the build as a whole.