1

I am trying to debug code in eclipse, I don't see values of variables in joda Interval.class when I hover on the variables.

I do see the the values of other variables defined in other .class files (not joda classes).

It is just for the joda classes. I did reset debug perspective and deleted target folder and created it agin, but the issue still exists. Please check the attachment.

Any help would be appreciated.


variabled_values_not_showing_up

1 Answer 1

1
My problem are solved changing maven pom.xml file...
<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                    <debug>true</debug>
                    <debuglevel>lines,vars,source</debuglevel>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.