From 9df69d218232d05107066a7dedb64b27958468ca Mon Sep 17 00:00:00 2001 From: Tor Norbye Date: Thu, 22 Mar 2012 19:03:33 -0700 Subject: Turn off warnings in the command-line plugin build The command line build of the plugin displays all warnings in all plugins: thousands. This makes it harder to find the actual error breaking the build, and we don't need the warnings in these logs: it's easier to process and fix warnings within Eclipse when developing the plugins. So, this changeset turns off warnings for the command line build configuration. Change-Id: Id469ad9d6f8357bb331f38562bb0aaa253849f4b --- eclipse/buildConfig/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eclipse') diff --git a/eclipse/buildConfig/build.properties b/eclipse/buildConfig/build.properties index ae3be41..4c1d471 100644 --- a/eclipse/buildConfig/build.properties +++ b/eclipse/buildConfig/build.properties @@ -221,7 +221,7 @@ javacFailOnError=true javacVerbose=true # Extra arguments for the compiler. These are specific to the java compiler being used. -#compilerArg= +compilerArg=-warn:none # Default value for the version of the source code. This value is used when compiling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or set javacSource in build.properties javacSource=1.6 -- cgit v1.1