project/lib/ui5Framework/maven/CacheMode.js

  1. /**
  2. * Cache modes for maven consumption
  3. *
  4. * @public
  5. * @readonly
  6. * @enum {string}
  7. * @property {string} Default Cache everything, invalidate after 9 hours
  8. * @property {string} Force Use cache only. Do not send any requests to the repository
  9. * @property {string} Off Invalidate the cache and update from the repository
  10. * @module @ui5/project/ui5Framework/maven/CacheMode
  11. */
  12. export default {
  13. Default: "Default",
  14. Force: "Force",
  15. Off: "Off"
  16. };