i have an Exception in lemmatization code in java by using Netbeans 8.0 (that exists in the following link) when put it in my project which consists of many classes. the Exception is
Exception in thread "main" java.lang.NoSuchMethodError: edu.stanford.nlp.process.Morphology.lemma(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
at edu.stanford.nlp.pipeline.MorphaAnnotator.addLemma(MorphaAnnotator.java:72)
at edu.stanford.nlp.pipeline.MorphaAnnotator.annotate(MorphaAnnotator.java:56)
at edu.stanford.nlp.pipeline.AnnotationPipeline.annotate(AnnotationPipeline.java:69)
at edu.stanford.nlp.pipeline.StanfordCoreNLP.annotate(StanfordCoreNLP.java:684)
at summerization.StanfordLemmatizer.lemmatize(StanfordLemmatizer.java:64)
at summerization.StanfordLemmatizer.main(StanfordLemmatizer.java:100)