I have 3 lines of code, I need to add them to Eclipse JVM configuration in order to not having to write them everytime in every program I develop. These are the three lines:
System.getProperties().put("proxySet", "true");
System.getProperties().put("proxyHost","prxoy.com");
System.getProperties().put("proxyPort", "8080");
Any idea how to make it work?