Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Code Block
org.apache.ivy.core.settings.IvySettings ivySettings = new IvySettings();
// Now let's set the basedir of the ivy settings to some location
File baseDir = new File("/home/me/ivy");
ivySettings.setBaseDir(baseDir);

...