All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sbt.plugins.IvyPlugin.scala Maven / Gradle / Ivy

The newest version!
/*
 * sbt
 * Copyright 2023, Scala center
 * Copyright 2011 - 2022, Lightbend, Inc.
 * Copyright 2008 - 2010, Mark Harrah
 * Licensed under Apache License 2.0 (see LICENSE)
 */

package sbt
package plugins

import Def.Setting

/**
 * Plugin that enables resolving artifacts via ivy.
 *
 * Core Tasks
 * - `update`
 * - `makePom`
 * - `publish`
 * - `artifacts`
 * - `publishedArtifacts`
 */
object IvyPlugin extends AutoPlugin {
  // We are automatically included on everything that has the global module,
  // which is automatically included on everything.
  override def requires = CorePlugin
  override def trigger = allRequirements

  override lazy val globalSettings: Seq[Setting[_]] =
    Defaults.globalIvyCore
  override lazy val buildSettings: Seq[Setting[_]] =
    Defaults.buildLevelIvySettings
  override lazy val projectSettings: Seq[Setting[_]] =
    Classpaths.ivyPublishSettings ++ Classpaths.ivyBaseSettings

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy