0

I've got this project from sf. If I run the build file I got the error:

...\workspace_neon\ssf\main\src\org\kablink\teaming\util\Thumbnail.java:50: error: package com.sun.image.codec.jpeg does not exist [javac] import com.sun.image.codec.jpeg.ImageFormatException;

I found that someone else run into similar problems. How to run the build.xml file so that javac get execute with the option -XDignore.symbol.file?

Community
  • 1
  • 1
StellaMaris
  • 877
  • 2
  • 12
  • 29

1 Answers1

2

In the build file in which the errors occurs try something like this

            <javac ...>
               ...  
               <compilerarg value="-XDignore.symbol.file" />
            </javac>
howlger
  • 31,050
  • 11
  • 59
  • 99
Sergei Podlipaev
  • 1,331
  • 1
  • 14
  • 34