Regarding the warning message "Classpath variable is deprecated",

After importing the Java project into Eclipse, I received the following warning message:

Classpath variable 'JRE_LIB' in project 'scheduleDemo' is deprecated. Use the JRE system Library instead. 

What does this warning message mean, how can I delete this message?

+4
source share
1 answer

It looks like JRE_LIB deprecated. This is Classpath confirmation message

To solve the problem, go to the Java Build Path properties page and click Library and then Add Library

+1
source

Source: https://habr.com/ru/post/1489016/


All Articles