Please run this script in your WEB-INF/lib dir and reply with the output: jargrep.sh: #!/bin/sh LOOK_FOR=$1 for i in `find . -name "*jar"` do echo $i jar tvf $i | grep $LOOK_FOR done
Example: ./jargrep.sh CompilerOptions If you're not on a Unix system, use WinRAR to search the whole WEB-INF/lib directory for CompilerOptions /dmc On Fri, Feb 25, 2011 at 1:58 PM, Steven <[email protected]> wrote: > I keep getting the error below and am so desperate for a solution. I > have tried everything reodering the class path, look for the > jasper.jdtcompiler and nothing seems to work. I don't have tomcat > installed on my computer so there should be no duplicate jars. I am > really lost and I don't know what to do. If someone can give me the > step by step process to solving this problem I will be so happy. > > > > > Compiling module com.GAEJ.GAEJ > [ERROR] Unexpected > java.lang.NoSuchFieldError: warningThreshold > at > com.google.gwt.dev.javac.JdtCompiler.getCompilerOptions(JdtCompiler.java: > 340) > at com.google.gwt.dev.javac.JdtCompiler > $CompilerImpl.<init>(JdtCompiler.java:174) > at com.google.gwt.dev.javac.JdtCompiler.doCompile(JdtCompiler.java: > 616) > at com.google.gwt.dev.javac.CompilationStateBuilder > $CompileMoreLater.compile(CompilationStateBuilder.java:193) > at > > com.google.gwt.dev.javac.CompilationStateBuilder.doBuildFrom(CompilationStateBuilder.java: > 390) > at > > com.google.gwt.dev.javac.CompilationStateBuilder.buildFrom(CompilationStateBuilder.java: > 275) > at > com.google.gwt.dev.cfg.ModuleDef.getCompilationState(ModuleDef.java: > 325) > at com.google.gwt.dev.Precompile.precompile(Precompile.java:512) > at com.google.gwt.dev.Precompile.precompile(Precompile.java:495) > at com.google.gwt.dev.Precompile.precompile(Precompile.java:407) > at com.google.gwt.dev.Compiler.run(Compiler.java:215) > at com.google.gwt.dev.Compiler.run(Compiler.java:187) > at com.google.gwt.dev.Compiler$1.run(Compiler.java:159) > at > com.google.gwt.dev.CompileTaskRunner.doRun(CompileTaskRunner.java: > 87) > at > > com.google.gwt.dev.CompileTaskRunner.runWithAppropriateLogger(CompileTaskRunner.java: > 81) > at com.google.gwt.dev.Compiler.main(Compiler.java:166) > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > > -- David Chandler Developer Programs Engineer, Google Web Toolkit w: http://code.google.com/ b: http://googlewebtoolkit.blogspot.com/ t: @googledevtools -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
