upgrade and enable contraband

This commit is contained in:
João Ferreira 2024-10-08 00:24:05 +01:00
parent e882dafac7
commit 1f45d25ec3
99 changed files with 142 additions and 142 deletions

View File

@ -111,7 +111,7 @@ lazy val lmRoot = (project in file("."))
) )
lazy val lmCore = (project in file("core")) lazy val lmCore = (project in file("core"))
// .enablePlugins(ContrabandPlugin, JsonCodecPlugin) .enablePlugins(ContrabandPlugin, JsonCodecPlugin)
.settings( .settings(
commonSettings, commonSettings,
name := "librarymanagement-core", name := "librarymanagement-core",

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -20,7 +20,7 @@ final class ConfigurationReportLite private (
override def toString: String = { override def toString: String = {
"ConfigurationReportLite(" + configuration + ", " + details + ")" "ConfigurationReportLite(" + configuration + ", " + details + ")"
} }
private[this] def copy(configuration: String = configuration, details: Vector[sbt.librarymanagement.OrganizationArtifactReport] = details): ConfigurationReportLite = { private def copy(configuration: String = configuration, details: Vector[sbt.librarymanagement.OrganizationArtifactReport] = details): ConfigurationReportLite = {
new ConfigurationReportLite(configuration, details) new ConfigurationReportLite(configuration, details)
} }
def withConfiguration(configuration: String): ConfigurationReportLite = { def withConfiguration(configuration: String): ConfigurationReportLite = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -31,7 +31,7 @@ final class SemComparator private (
override def toString: String = { override def toString: String = {
this.toStringImpl this.toStringImpl
} }
private[this] def copy(op: sbt.internal.librarymanagement.SemSelOperator = op, major: Option[Long] = major, minor: Option[Long] = minor, patch: Option[Long] = patch, tags: Seq[String] = tags): SemComparator = { private def copy(op: sbt.internal.librarymanagement.SemSelOperator = op, major: Option[Long] = major, minor: Option[Long] = minor, patch: Option[Long] = patch, tags: Seq[String] = tags): SemComparator = {
new SemComparator(op, major, minor, patch, tags) new SemComparator(op, major, minor, patch, tags)
} }
def withOp(op: sbt.internal.librarymanagement.SemSelOperator): SemComparator = { def withOp(op: sbt.internal.librarymanagement.SemSelOperator): SemComparator = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -19,7 +19,7 @@ final class SemSelAndChunk private (
override def toString: String = { override def toString: String = {
comparators.map(_.toString).mkString(" ") comparators.map(_.toString).mkString(" ")
} }
private[this] def copy(comparators: Seq[sbt.internal.librarymanagement.SemComparator] = comparators): SemSelAndChunk = { private def copy(comparators: Seq[sbt.internal.librarymanagement.SemComparator] = comparators): SemSelAndChunk = {
new SemSelAndChunk(comparators) new SemSelAndChunk(comparators)
} }
def withComparators(comparators: Seq[sbt.internal.librarymanagement.SemComparator]): SemSelAndChunk = { def withComparators(comparators: Seq[sbt.internal.librarymanagement.SemComparator]): SemSelAndChunk = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -19,7 +19,7 @@ final class UpdateReportLite private (
override def toString: String = { override def toString: String = {
"UpdateReportLite(" + configurations + ")" "UpdateReportLite(" + configurations + ")"
} }
private[this] def copy(configurations: Vector[sbt.internal.librarymanagement.ConfigurationReportLite] = configurations): UpdateReportLite = { private def copy(configurations: Vector[sbt.internal.librarymanagement.ConfigurationReportLite] = configurations): UpdateReportLite = {
new UpdateReportLite(configurations) new UpdateReportLite(configurations)
} }
def withConfigurations(configurations: Vector[sbt.internal.librarymanagement.ConfigurationReportLite]): UpdateReportLite = { def withConfigurations(configurations: Vector[sbt.internal.librarymanagement.ConfigurationReportLite]): UpdateReportLite = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -28,7 +28,7 @@ final class Artifact private (
override def toString: String = { override def toString: String = {
"Artifact(" + name + ", " + `type` + ", " + extension + ", " + classifier + ", " + configurations + ", " + url + ", " + extraAttributes + ", " + checksum + ", " + allowInsecureProtocol + ")" "Artifact(" + name + ", " + `type` + ", " + extension + ", " + classifier + ", " + configurations + ", " + url + ", " + extraAttributes + ", " + checksum + ", " + allowInsecureProtocol + ")"
} }
private[this] def copy(name: String = name, `type`: String = `type`, extension: String = extension, classifier: Option[String] = classifier, configurations: Vector[sbt.librarymanagement.ConfigRef] = configurations, url: Option[java.net.URI] = url, extraAttributes: Map[String, String] = extraAttributes, checksum: Option[sbt.librarymanagement.Checksum] = checksum, allowInsecureProtocol: Boolean = allowInsecureProtocol): Artifact = { private def copy(name: String = name, `type`: String = `type`, extension: String = extension, classifier: Option[String] = classifier, configurations: Vector[sbt.librarymanagement.ConfigRef] = configurations, url: Option[java.net.URI] = url, extraAttributes: Map[String, String] = extraAttributes, checksum: Option[sbt.librarymanagement.Checksum] = checksum, allowInsecureProtocol: Boolean = allowInsecureProtocol): Artifact = {
new Artifact(name, `type`, extension, classifier, configurations, url, extraAttributes, checksum, allowInsecureProtocol) new Artifact(name, `type`, extension, classifier, configurations, url, extraAttributes, checksum, allowInsecureProtocol)
} }
def withName(name: String): Artifact = { def withName(name: String): Artifact = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -27,7 +27,7 @@ final class ArtifactTypeFilter private (
override def toString: String = { override def toString: String = {
"ArtifactTypeFilter(" + types + ", " + inverted + ")" "ArtifactTypeFilter(" + types + ", " + inverted + ")"
} }
private[this] def copy(types: Set[String] = types, inverted: Boolean = inverted): ArtifactTypeFilter = { private def copy(types: Set[String] = types, inverted: Boolean = inverted): ArtifactTypeFilter = {
new ArtifactTypeFilter(types, inverted) new ArtifactTypeFilter(types, inverted)
} }
def withTypes(types: Set[String]): ArtifactTypeFilter = { def withTypes(types: Set[String]): ArtifactTypeFilter = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -25,7 +25,7 @@ final class Caller private (
override def toString: String = { override def toString: String = {
s"$caller" s"$caller"
} }
private[this] def copy(caller: sbt.librarymanagement.ModuleID = caller, callerConfigurations: Vector[sbt.librarymanagement.ConfigRef] = callerConfigurations, callerExtraAttributes: Map[String, String] = callerExtraAttributes, isForceDependency: Boolean = isForceDependency, isChangingDependency: Boolean = isChangingDependency, isTransitiveDependency: Boolean = isTransitiveDependency, isDirectlyForceDependency: Boolean = isDirectlyForceDependency): Caller = { private def copy(caller: sbt.librarymanagement.ModuleID = caller, callerConfigurations: Vector[sbt.librarymanagement.ConfigRef] = callerConfigurations, callerExtraAttributes: Map[String, String] = callerExtraAttributes, isForceDependency: Boolean = isForceDependency, isChangingDependency: Boolean = isChangingDependency, isTransitiveDependency: Boolean = isTransitiveDependency, isDirectlyForceDependency: Boolean = isDirectlyForceDependency): Caller = {
new Caller(caller, callerConfigurations, callerExtraAttributes, isForceDependency, isChangingDependency, isTransitiveDependency, isDirectlyForceDependency) new Caller(caller, callerConfigurations, callerExtraAttributes, isForceDependency, isChangingDependency, isTransitiveDependency, isDirectlyForceDependency)
} }
def withCaller(caller: sbt.librarymanagement.ModuleID): Caller = { def withCaller(caller: sbt.librarymanagement.ModuleID): Caller = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -20,7 +20,7 @@ final class ChainedResolver private (
override def toString: String = { override def toString: String = {
"ChainedResolver(" + name + ", " + resolvers + ")" "ChainedResolver(" + name + ", " + resolvers + ")"
} }
private[this] def copy(name: String = name, resolvers: Vector[sbt.librarymanagement.Resolver] = resolvers): ChainedResolver = { private def copy(name: String = name, resolvers: Vector[sbt.librarymanagement.Resolver] = resolvers): ChainedResolver = {
new ChainedResolver(name, resolvers) new ChainedResolver(name, resolvers)
} }
def withName(name: String): ChainedResolver = { def withName(name: String): ChainedResolver = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -20,7 +20,7 @@ final class Checksum private (
override def toString: String = { override def toString: String = {
"Checksum(" + digest + ", " + `type` + ")" "Checksum(" + digest + ", " + `type` + ")"
} }
private[this] def copy(digest: String = digest, `type`: String = `type`): Checksum = { private def copy(digest: String = digest, `type`: String = `type`): Checksum = {
new Checksum(digest, `type`) new Checksum(digest, `type`)
} }
def withDigest(digest: String): Checksum = { def withDigest(digest: String): Checksum = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -29,7 +29,7 @@ final class ConfigurationReport private (
(if (details.isEmpty) modules.mkString + details.flatMap(_.modules).filter(_.evicted).map("\t\t(EVICTED) " + _ + "\n").mkString (if (details.isEmpty) modules.mkString + details.flatMap(_.modules).filter(_.evicted).map("\t\t(EVICTED) " + _ + "\n").mkString
else details.mkString) else details.mkString)
} }
private[this] def copy(configuration: sbt.librarymanagement.ConfigRef = configuration, modules: Vector[sbt.librarymanagement.ModuleReport] = modules, details: Vector[sbt.librarymanagement.OrganizationArtifactReport] = details): ConfigurationReport = { private def copy(configuration: sbt.librarymanagement.ConfigRef = configuration, modules: Vector[sbt.librarymanagement.ModuleReport] = modules, details: Vector[sbt.librarymanagement.OrganizationArtifactReport] = details): ConfigurationReport = {
new ConfigurationReport(configuration, modules, details) new ConfigurationReport(configuration, modules, details)
} }
def withConfiguration(configuration: sbt.librarymanagement.ConfigRef): ConfigurationReport = { def withConfiguration(configuration: sbt.librarymanagement.ConfigRef): ConfigurationReport = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -22,7 +22,7 @@ final class ConflictManager private (
override def toString: String = { override def toString: String = {
"ConflictManager(" + name + ", " + organization + ", " + module + ")" "ConflictManager(" + name + ", " + organization + ", " + module + ")"
} }
private[this] def copy(name: String = name, organization: String = organization, module: String = module): ConflictManager = { private def copy(name: String = name, organization: String = organization, module: String = module): ConflictManager = {
new ConflictManager(name, organization, module) new ConflictManager(name, organization, module)
} }
def withName(name: String): ConflictManager = { def withName(name: String): ConflictManager = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -22,7 +22,7 @@ final class Developer private (
override def toString: String = { override def toString: String = {
"Developer(" + id + ", " + name + ", " + email + ", " + url + ")" "Developer(" + id + ", " + name + ", " + email + ", " + url + ")"
} }
private[this] def copy(id: String = id, name: String = name, email: String = email, url: java.net.URI = url): Developer = { private def copy(id: String = id, name: String = name, email: String = email, url: java.net.URI = url): Developer = {
new Developer(id, name, email, url) new Developer(id, name, email, url)
} }
def withId(id: String): Developer = { def withId(id: String): Developer = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -21,7 +21,7 @@ final class FileConfiguration private (
override def toString: String = { override def toString: String = {
"FileConfiguration(" + isLocal + ", " + isTransactional + ")" "FileConfiguration(" + isLocal + ", " + isTransactional + ")"
} }
private[this] def copy(isLocal: Boolean = isLocal, isTransactional: Option[Boolean] = isTransactional): FileConfiguration = { private def copy(isLocal: Boolean = isLocal, isTransactional: Option[Boolean] = isTransactional): FileConfiguration = {
new FileConfiguration(isLocal, isTransactional) new FileConfiguration(isLocal, isTransactional)
} }
def withIsLocal(isLocal: Boolean): FileConfiguration = { def withIsLocal(isLocal: Boolean): FileConfiguration = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -23,7 +23,7 @@ final class FileRepository private (
override def toString: String = { override def toString: String = {
"FileRepository(" + name + ", " + patterns + ", " + configuration + ")" "FileRepository(" + name + ", " + patterns + ", " + configuration + ")"
} }
private[this] def copy(name: String = name, patterns: sbt.librarymanagement.Patterns = patterns, configuration: sbt.librarymanagement.FileConfiguration = configuration): FileRepository = { private def copy(name: String = name, patterns: sbt.librarymanagement.Patterns = patterns, configuration: sbt.librarymanagement.FileConfiguration = configuration): FileRepository = {
new FileRepository(name, patterns, configuration) new FileRepository(name, patterns, configuration)
} }
def withName(name: String): FileRepository = { def withName(name: String): FileRepository = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -23,7 +23,7 @@ final class GetClassifiersConfiguration private (
override def toString: String = { override def toString: String = {
"GetClassifiersConfiguration(" + module + ", " + excludes + ", " + updateConfiguration + ", " + sourceArtifactTypes + ", " + docArtifactTypes + ")" "GetClassifiersConfiguration(" + module + ", " + excludes + ", " + updateConfiguration + ", " + sourceArtifactTypes + ", " + docArtifactTypes + ")"
} }
private[this] def copy(module: sbt.librarymanagement.GetClassifiersModule = module, excludes: Vector[scala.Tuple2[sbt.librarymanagement.ModuleID, scala.Vector[sbt.librarymanagement.ConfigRef]]] = excludes, updateConfiguration: sbt.librarymanagement.UpdateConfiguration = updateConfiguration, sourceArtifactTypes: Vector[String] = sourceArtifactTypes, docArtifactTypes: Vector[String] = docArtifactTypes): GetClassifiersConfiguration = { private def copy(module: sbt.librarymanagement.GetClassifiersModule = module, excludes: Vector[scala.Tuple2[sbt.librarymanagement.ModuleID, scala.Vector[sbt.librarymanagement.ConfigRef]]] = excludes, updateConfiguration: sbt.librarymanagement.UpdateConfiguration = updateConfiguration, sourceArtifactTypes: Vector[String] = sourceArtifactTypes, docArtifactTypes: Vector[String] = docArtifactTypes): GetClassifiersConfiguration = {
new GetClassifiersConfiguration(module, excludes, updateConfiguration, sourceArtifactTypes, docArtifactTypes) new GetClassifiersConfiguration(module, excludes, updateConfiguration, sourceArtifactTypes, docArtifactTypes)
} }
def withModule(module: sbt.librarymanagement.GetClassifiersModule): GetClassifiersConfiguration = { def withModule(module: sbt.librarymanagement.GetClassifiersModule): GetClassifiersConfiguration = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -23,7 +23,7 @@ final class GetClassifiersModule private (
override def toString: String = { override def toString: String = {
"GetClassifiersModule(" + id + ", " + scalaModuleInfo + ", " + dependencies + ", " + configurations + ", " + classifiers + ")" "GetClassifiersModule(" + id + ", " + scalaModuleInfo + ", " + dependencies + ", " + configurations + ", " + classifiers + ")"
} }
private[this] def copy(id: sbt.librarymanagement.ModuleID = id, scalaModuleInfo: Option[sbt.librarymanagement.ScalaModuleInfo] = scalaModuleInfo, dependencies: Vector[sbt.librarymanagement.ModuleID] = dependencies, configurations: Vector[sbt.librarymanagement.Configuration] = configurations, classifiers: Vector[String] = classifiers): GetClassifiersModule = { private def copy(id: sbt.librarymanagement.ModuleID = id, scalaModuleInfo: Option[sbt.librarymanagement.ScalaModuleInfo] = scalaModuleInfo, dependencies: Vector[sbt.librarymanagement.ModuleID] = dependencies, configurations: Vector[sbt.librarymanagement.Configuration] = configurations, classifiers: Vector[String] = classifiers): GetClassifiersModule = {
new GetClassifiersModule(id, scalaModuleInfo, dependencies, configurations, classifiers) new GetClassifiersModule(id, scalaModuleInfo, dependencies, configurations, classifiers)
} }
def withId(id: sbt.librarymanagement.ModuleID): GetClassifiersModule = { def withId(id: sbt.librarymanagement.ModuleID): GetClassifiersModule = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -32,7 +32,7 @@ final class InclExclRule private (
override def toString: String = { override def toString: String = {
"InclExclRule(" + organization + ", " + name + ", " + artifact + ", " + configurations + ", " + crossVersion + ")" "InclExclRule(" + organization + ", " + name + ", " + artifact + ", " + configurations + ", " + crossVersion + ")"
} }
private[this] def copy(organization: String = organization, name: String = name, artifact: String = artifact, configurations: Vector[sbt.librarymanagement.ConfigRef] = configurations, crossVersion: sbt.librarymanagement.CrossVersion = crossVersion): InclExclRule = { private def copy(organization: String = organization, name: String = name, artifact: String = artifact, configurations: Vector[sbt.librarymanagement.ConfigRef] = configurations, crossVersion: sbt.librarymanagement.CrossVersion = crossVersion): InclExclRule = {
new InclExclRule(organization, name, artifact, configurations, crossVersion) new InclExclRule(organization, name, artifact, configurations, crossVersion)
} }
def withOrganization(organization: String): InclExclRule = { def withOrganization(organization: String): InclExclRule = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -22,7 +22,7 @@ final class IvyFileConfiguration private (
override def toString: String = { override def toString: String = {
"IvyFileConfiguration(" + validate + ", " + scalaModuleInfo + ", " + file + ", " + autoScalaTools + ")" "IvyFileConfiguration(" + validate + ", " + scalaModuleInfo + ", " + file + ", " + autoScalaTools + ")"
} }
private[this] def copy(validate: Boolean = validate, scalaModuleInfo: Option[sbt.librarymanagement.ScalaModuleInfo] = scalaModuleInfo, file: java.io.File = file, autoScalaTools: Boolean = autoScalaTools): IvyFileConfiguration = { private def copy(validate: Boolean = validate, scalaModuleInfo: Option[sbt.librarymanagement.ScalaModuleInfo] = scalaModuleInfo, file: java.io.File = file, autoScalaTools: Boolean = autoScalaTools): IvyFileConfiguration = {
new IvyFileConfiguration(validate, scalaModuleInfo, file, autoScalaTools) new IvyFileConfiguration(validate, scalaModuleInfo, file, autoScalaTools)
} }
def withValidate(validate: Boolean): IvyFileConfiguration = { def withValidate(validate: Boolean): IvyFileConfiguration = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -21,7 +21,7 @@ final class KeyFileAuthentication private (
override def toString: String = { override def toString: String = {
"KeyFileAuthentication(" + user + ", " + keyfile + ", " + password + ")" "KeyFileAuthentication(" + user + ", " + keyfile + ", " + password + ")"
} }
private[this] def copy(user: String = user, keyfile: java.io.File = keyfile, password: Option[String] = password): KeyFileAuthentication = { private def copy(user: String = user, keyfile: java.io.File = keyfile, password: Option[String] = password): KeyFileAuthentication = {
new KeyFileAuthentication(user, keyfile, password) new KeyFileAuthentication(user, keyfile, password)
} }
def withUser(user: String): KeyFileAuthentication = { def withUser(user: String): KeyFileAuthentication = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -26,7 +26,7 @@ final class MakePomConfiguration private (
override def toString: String = { override def toString: String = {
"MakePomConfiguration(" + file + ", " + moduleInfo + ", " + configurations + ", " + extra + ", " + process + ", " + filterRepositories + ", " + allRepositories + ", " + includeTypes + ")" "MakePomConfiguration(" + file + ", " + moduleInfo + ", " + configurations + ", " + extra + ", " + process + ", " + filterRepositories + ", " + allRepositories + ", " + includeTypes + ")"
} }
private[this] def copy(file: Option[java.io.File] = file, moduleInfo: Option[sbt.librarymanagement.ModuleInfo] = moduleInfo, configurations: Option[scala.Vector[sbt.librarymanagement.Configuration]] = configurations, extra: Option[scala.xml.NodeSeq] = extra, process: scala.Function1[scala.xml.Node, scala.xml.Node] = process, filterRepositories: scala.Function1[sbt.librarymanagement.MavenRepository, Boolean] = filterRepositories, allRepositories: Boolean = allRepositories, includeTypes: Set[String] = includeTypes): MakePomConfiguration = { private def copy(file: Option[java.io.File] = file, moduleInfo: Option[sbt.librarymanagement.ModuleInfo] = moduleInfo, configurations: Option[scala.Vector[sbt.librarymanagement.Configuration]] = configurations, extra: Option[scala.xml.NodeSeq] = extra, process: scala.Function1[scala.xml.Node, scala.xml.Node] = process, filterRepositories: scala.Function1[sbt.librarymanagement.MavenRepository, Boolean] = filterRepositories, allRepositories: Boolean = allRepositories, includeTypes: Set[String] = includeTypes): MakePomConfiguration = {
new MakePomConfiguration(file, moduleInfo, configurations, extra, process, filterRepositories, allRepositories, includeTypes) new MakePomConfiguration(file, moduleInfo, configurations, extra, process, filterRepositories, allRepositories, includeTypes)
} }
def withFile(file: Option[java.io.File]): MakePomConfiguration = { def withFile(file: Option[java.io.File]): MakePomConfiguration = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -28,7 +28,7 @@ final class MavenCache private (
override def toString: String = { override def toString: String = {
s"cache:$name: ${rootFile.getAbsolutePath}" s"cache:$name: ${rootFile.getAbsolutePath}"
} }
private[this] def copy(name: String = name, root: String = root, localIfFile: Boolean = localIfFile, rootFile: java.io.File = rootFile): MavenCache = { private def copy(name: String = name, root: String = root, localIfFile: Boolean = localIfFile, rootFile: java.io.File = rootFile): MavenCache = {
new MavenCache(name, root, localIfFile, rootFile) new MavenCache(name, root, localIfFile, rootFile)
} }
def withName(name: String): MavenCache = { def withName(name: String): MavenCache = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -26,7 +26,7 @@ final class MavenRepo private (
override def toString: String = { override def toString: String = {
s"$name: $root" s"$name: $root"
} }
private[this] def copy(name: String = name, root: String = root, localIfFile: Boolean = localIfFile, _allowInsecureProtocol: Boolean = _allowInsecureProtocol): MavenRepo = { private def copy(name: String = name, root: String = root, localIfFile: Boolean = localIfFile, _allowInsecureProtocol: Boolean = _allowInsecureProtocol): MavenRepo = {
new MavenRepo(name, root, localIfFile, _allowInsecureProtocol) new MavenRepo(name, root, localIfFile, _allowInsecureProtocol)
} }
def withName(name: String): MavenRepo = { def withName(name: String): MavenRepo = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -22,7 +22,7 @@ final class ModuleConfiguration private (
override def toString: String = { override def toString: String = {
"ModuleConfiguration(" + organization + ", " + name + ", " + revision + ", " + resolver + ")" "ModuleConfiguration(" + organization + ", " + name + ", " + revision + ", " + resolver + ")"
} }
private[this] def copy(organization: String = organization, name: String = name, revision: String = revision, resolver: sbt.librarymanagement.Resolver = resolver): ModuleConfiguration = { private def copy(organization: String = organization, name: String = name, revision: String = revision, resolver: sbt.librarymanagement.Resolver = resolver): ModuleConfiguration = {
new ModuleConfiguration(organization, name, revision, resolver) new ModuleConfiguration(organization, name, revision, resolver)
} }
def withOrganization(organization: String): ModuleConfiguration = { def withOrganization(organization: String): ModuleConfiguration = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -29,7 +29,7 @@ final class ModuleDescriptorConfiguration private (
override def toString: String = { override def toString: String = {
"ModuleDescriptorConfiguration(" + validate + ", " + scalaModuleInfo + ", " + module + ", " + moduleInfo + ", " + dependencies + ", " + overrides + ", " + excludes + ", " + ivyXML + ", " + configurations + ", " + defaultConfiguration + ", " + conflictManager + ")" "ModuleDescriptorConfiguration(" + validate + ", " + scalaModuleInfo + ", " + module + ", " + moduleInfo + ", " + dependencies + ", " + overrides + ", " + excludes + ", " + ivyXML + ", " + configurations + ", " + defaultConfiguration + ", " + conflictManager + ")"
} }
private[this] def copy(validate: Boolean = validate, scalaModuleInfo: Option[sbt.librarymanagement.ScalaModuleInfo] = scalaModuleInfo, module: sbt.librarymanagement.ModuleID = module, moduleInfo: sbt.librarymanagement.ModuleInfo = moduleInfo, dependencies: Vector[sbt.librarymanagement.ModuleID] = dependencies, overrides: Vector[sbt.librarymanagement.ModuleID] = overrides, excludes: Vector[sbt.librarymanagement.InclExclRule] = excludes, ivyXML: scala.xml.NodeSeq = ivyXML, configurations: Vector[sbt.librarymanagement.Configuration] = configurations, defaultConfiguration: Option[sbt.librarymanagement.Configuration] = defaultConfiguration, conflictManager: sbt.librarymanagement.ConflictManager = conflictManager): ModuleDescriptorConfiguration = { private def copy(validate: Boolean = validate, scalaModuleInfo: Option[sbt.librarymanagement.ScalaModuleInfo] = scalaModuleInfo, module: sbt.librarymanagement.ModuleID = module, moduleInfo: sbt.librarymanagement.ModuleInfo = moduleInfo, dependencies: Vector[sbt.librarymanagement.ModuleID] = dependencies, overrides: Vector[sbt.librarymanagement.ModuleID] = overrides, excludes: Vector[sbt.librarymanagement.InclExclRule] = excludes, ivyXML: scala.xml.NodeSeq = ivyXML, configurations: Vector[sbt.librarymanagement.Configuration] = configurations, defaultConfiguration: Option[sbt.librarymanagement.Configuration] = defaultConfiguration, conflictManager: sbt.librarymanagement.ConflictManager = conflictManager): ModuleDescriptorConfiguration = {
new ModuleDescriptorConfiguration(validate, scalaModuleInfo, module, moduleInfo, dependencies, overrides, excludes, ivyXML, configurations, defaultConfiguration, conflictManager) new ModuleDescriptorConfiguration(validate, scalaModuleInfo, module, moduleInfo, dependencies, overrides, excludes, ivyXML, configurations, defaultConfiguration, conflictManager)
} }
def withValidate(validate: Boolean): ModuleDescriptorConfiguration = { def withValidate(validate: Boolean): ModuleDescriptorConfiguration = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -33,7 +33,7 @@ final class ModuleID private (
override def toString: String = { override def toString: String = {
this.toStringImpl this.toStringImpl
} }
private[this] def copy(organization: String = organization, name: String = name, revision: String = revision, configurations: Option[String] = configurations, isChanging: Boolean = isChanging, isTransitive: Boolean = isTransitive, isForce: Boolean = isForce, explicitArtifacts: Vector[sbt.librarymanagement.Artifact] = explicitArtifacts, inclusions: Vector[sbt.librarymanagement.InclExclRule] = inclusions, exclusions: Vector[sbt.librarymanagement.InclExclRule] = exclusions, extraAttributes: Map[String, String] = extraAttributes, crossVersion: sbt.librarymanagement.CrossVersion = crossVersion, branchName: Option[String] = branchName, platformOpt: Option[String] = platformOpt): ModuleID = { private def copy(organization: String = organization, name: String = name, revision: String = revision, configurations: Option[String] = configurations, isChanging: Boolean = isChanging, isTransitive: Boolean = isTransitive, isForce: Boolean = isForce, explicitArtifacts: Vector[sbt.librarymanagement.Artifact] = explicitArtifacts, inclusions: Vector[sbt.librarymanagement.InclExclRule] = inclusions, exclusions: Vector[sbt.librarymanagement.InclExclRule] = exclusions, extraAttributes: Map[String, String] = extraAttributes, crossVersion: sbt.librarymanagement.CrossVersion = crossVersion, branchName: Option[String] = branchName, platformOpt: Option[String] = platformOpt): ModuleID = {
new ModuleID(organization, name, revision, configurations, isChanging, isTransitive, isForce, explicitArtifacts, inclusions, exclusions, extraAttributes, crossVersion, branchName, platformOpt) new ModuleID(organization, name, revision, configurations, isChanging, isTransitive, isForce, explicitArtifacts, inclusions, exclusions, extraAttributes, crossVersion, branchName, platformOpt)
} }
def withOrganization(organization: String): ModuleID = { def withOrganization(organization: String): ModuleID = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -28,7 +28,7 @@ final class ModuleInfo private (
override def toString: String = { override def toString: String = {
"ModuleInfo(" + nameFormal + ", " + description + ", " + homepage + ", " + startYear + ", " + licenses + ", " + organizationName + ", " + organizationHomepage + ", " + scmInfo + ", " + developers + ")" "ModuleInfo(" + nameFormal + ", " + description + ", " + homepage + ", " + startYear + ", " + licenses + ", " + organizationName + ", " + organizationHomepage + ", " + scmInfo + ", " + developers + ")"
} }
private[this] def copy(nameFormal: String = nameFormal, description: String = description, homepage: Option[java.net.URI] = homepage, startYear: Option[Int] = startYear, licenses: Vector[scala.Tuple2[String, java.net.URI]] = licenses, organizationName: String = organizationName, organizationHomepage: Option[java.net.URI] = organizationHomepage, scmInfo: Option[sbt.librarymanagement.ScmInfo] = scmInfo, developers: Vector[sbt.librarymanagement.Developer] = developers): ModuleInfo = { private def copy(nameFormal: String = nameFormal, description: String = description, homepage: Option[java.net.URI] = homepage, startYear: Option[Int] = startYear, licenses: Vector[scala.Tuple2[String, java.net.URI]] = licenses, organizationName: String = organizationName, organizationHomepage: Option[java.net.URI] = organizationHomepage, scmInfo: Option[sbt.librarymanagement.ScmInfo] = scmInfo, developers: Vector[sbt.librarymanagement.Developer] = developers): ModuleInfo = {
new ModuleInfo(nameFormal, description, homepage, startYear, licenses, organizationName, organizationHomepage, scmInfo, developers) new ModuleInfo(nameFormal, description, homepage, startYear, licenses, organizationName, organizationHomepage, scmInfo, developers)
} }
def withNameFormal(nameFormal: String): ModuleInfo = { def withNameFormal(nameFormal: String): ModuleInfo = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -41,7 +41,7 @@ final class ModuleReport private (
s"\t\t$module: " + s"\t\t$module: " +
(if (arts.size <= 1) "" else "\n\t\t\t") + arts.mkString("\n\t\t\t") + "\n" (if (arts.size <= 1) "" else "\n\t\t\t") + arts.mkString("\n\t\t\t") + "\n"
} }
private[this] def copy(module: sbt.librarymanagement.ModuleID = module, artifacts: Vector[scala.Tuple2[sbt.librarymanagement.Artifact, java.io.File]] = artifacts, missingArtifacts: Vector[sbt.librarymanagement.Artifact] = missingArtifacts, status: Option[String] = status, publicationDate: Option[java.util.Calendar] = publicationDate, resolver: Option[String] = resolver, artifactResolver: Option[String] = artifactResolver, evicted: Boolean = evicted, evictedData: Option[String] = evictedData, evictedReason: Option[String] = evictedReason, problem: Option[String] = problem, homepage: Option[String] = homepage, extraAttributes: Map[String, String] = extraAttributes, isDefault: Option[Boolean] = isDefault, branch: Option[String] = branch, configurations: Vector[sbt.librarymanagement.ConfigRef] = configurations, licenses: Vector[scala.Tuple2[String, Option[String]]] = licenses, callers: Vector[sbt.librarymanagement.Caller] = callers): ModuleReport = { private def copy(module: sbt.librarymanagement.ModuleID = module, artifacts: Vector[scala.Tuple2[sbt.librarymanagement.Artifact, java.io.File]] = artifacts, missingArtifacts: Vector[sbt.librarymanagement.Artifact] = missingArtifacts, status: Option[String] = status, publicationDate: Option[java.util.Calendar] = publicationDate, resolver: Option[String] = resolver, artifactResolver: Option[String] = artifactResolver, evicted: Boolean = evicted, evictedData: Option[String] = evictedData, evictedReason: Option[String] = evictedReason, problem: Option[String] = problem, homepage: Option[String] = homepage, extraAttributes: Map[String, String] = extraAttributes, isDefault: Option[Boolean] = isDefault, branch: Option[String] = branch, configurations: Vector[sbt.librarymanagement.ConfigRef] = configurations, licenses: Vector[scala.Tuple2[String, Option[String]]] = licenses, callers: Vector[sbt.librarymanagement.Caller] = callers): ModuleReport = {
new ModuleReport(module, artifacts, missingArtifacts, status, publicationDate, resolver, artifactResolver, evicted, evictedData, evictedReason, problem, homepage, extraAttributes, isDefault, branch, configurations, licenses, callers) new ModuleReport(module, artifacts, missingArtifacts, status, publicationDate, resolver, artifactResolver, evicted, evictedData, evictedReason, problem, homepage, extraAttributes, isDefault, branch, configurations, licenses, callers)
} }
def withModule(module: sbt.librarymanagement.ModuleID): ModuleReport = { def withModule(module: sbt.librarymanagement.ModuleID): ModuleReport = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -33,7 +33,7 @@ final class OrganizationArtifactReport private (
val details = modules map { _.detailReport } val details = modules map { _.detailReport }
s"\t$organization:$name\n${details.mkString}\n" s"\t$organization:$name\n${details.mkString}\n"
} }
private[this] def copy(organization: String = organization, name: String = name, modules: Vector[sbt.librarymanagement.ModuleReport] = modules): OrganizationArtifactReport = { private def copy(organization: String = organization, name: String = name, modules: Vector[sbt.librarymanagement.ModuleReport] = modules): OrganizationArtifactReport = {
new OrganizationArtifactReport(organization, name, modules) new OrganizationArtifactReport(organization, name, modules)
} }
def withOrganization(organization: String): OrganizationArtifactReport = { def withOrganization(organization: String): OrganizationArtifactReport = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -20,7 +20,7 @@ final class PasswordAuthentication private (
override def toString: String = { override def toString: String = {
"PasswordAuthentication(" + user + ", " + password + ")" "PasswordAuthentication(" + user + ", " + password + ")"
} }
private[this] def copy(user: String = user, password: Option[String] = password): PasswordAuthentication = { private def copy(user: String = user, password: Option[String] = password): PasswordAuthentication = {
new PasswordAuthentication(user, password) new PasswordAuthentication(user, password)
} }
def withUser(user: String): PasswordAuthentication = { def withUser(user: String): PasswordAuthentication = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -24,7 +24,7 @@ final class Patterns private (
"Patterns(ivyPatterns=%s, artifactPatterns=%s, isMavenCompatible=%s, descriptorOptional=%s, skipConsistencyCheck=%s)".format( "Patterns(ivyPatterns=%s, artifactPatterns=%s, isMavenCompatible=%s, descriptorOptional=%s, skipConsistencyCheck=%s)".format(
ivyPatterns, artifactPatterns, isMavenCompatible, descriptorOptional, skipConsistencyCheck) ivyPatterns, artifactPatterns, isMavenCompatible, descriptorOptional, skipConsistencyCheck)
} }
private[this] def copy(ivyPatterns: Vector[String] = ivyPatterns, artifactPatterns: Vector[String] = artifactPatterns, isMavenCompatible: Boolean = isMavenCompatible, descriptorOptional: Boolean = descriptorOptional, skipConsistencyCheck: Boolean = skipConsistencyCheck): Patterns = { private def copy(ivyPatterns: Vector[String] = ivyPatterns, artifactPatterns: Vector[String] = artifactPatterns, isMavenCompatible: Boolean = isMavenCompatible, descriptorOptional: Boolean = descriptorOptional, skipConsistencyCheck: Boolean = skipConsistencyCheck): Patterns = {
new Patterns(ivyPatterns, artifactPatterns, isMavenCompatible, descriptorOptional, skipConsistencyCheck) new Patterns(ivyPatterns, artifactPatterns, isMavenCompatible, descriptorOptional, skipConsistencyCheck)
} }
def withIvyPatterns(ivyPatterns: Vector[String]): Patterns = { def withIvyPatterns(ivyPatterns: Vector[String]): Patterns = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -22,7 +22,7 @@ final class PomConfiguration private (
override def toString: String = { override def toString: String = {
"PomConfiguration(" + validate + ", " + scalaModuleInfo + ", " + file + ", " + autoScalaTools + ")" "PomConfiguration(" + validate + ", " + scalaModuleInfo + ", " + file + ", " + autoScalaTools + ")"
} }
private[this] def copy(validate: Boolean = validate, scalaModuleInfo: Option[sbt.librarymanagement.ScalaModuleInfo] = scalaModuleInfo, file: java.io.File = file, autoScalaTools: Boolean = autoScalaTools): PomConfiguration = { private def copy(validate: Boolean = validate, scalaModuleInfo: Option[sbt.librarymanagement.ScalaModuleInfo] = scalaModuleInfo, file: java.io.File = file, autoScalaTools: Boolean = autoScalaTools): PomConfiguration = {
new PomConfiguration(validate, scalaModuleInfo, file, autoScalaTools) new PomConfiguration(validate, scalaModuleInfo, file, autoScalaTools)
} }
def withValidate(validate: Boolean): PomConfiguration = { def withValidate(validate: Boolean): PomConfiguration = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -27,7 +27,7 @@ final class PublishConfiguration private (
override def toString: String = { override def toString: String = {
"PublishConfiguration(" + publishMavenStyle + ", " + deliverIvyPattern + ", " + status + ", " + configurations + ", " + resolverName + ", " + artifacts + ", " + checksums + ", " + logging + ", " + overwrite + ")" "PublishConfiguration(" + publishMavenStyle + ", " + deliverIvyPattern + ", " + status + ", " + configurations + ", " + resolverName + ", " + artifacts + ", " + checksums + ", " + logging + ", " + overwrite + ")"
} }
private[this] def copy(publishMavenStyle: Boolean = publishMavenStyle, deliverIvyPattern: Option[String] = deliverIvyPattern, status: Option[String] = status, configurations: Option[scala.Vector[sbt.librarymanagement.ConfigRef]] = configurations, resolverName: Option[String] = resolverName, artifacts: Vector[scala.Tuple2[sbt.librarymanagement.Artifact, java.io.File]] = artifacts, checksums: scala.Vector[String] = checksums, logging: Option[sbt.librarymanagement.UpdateLogging] = logging, overwrite: Boolean = overwrite): PublishConfiguration = { private def copy(publishMavenStyle: Boolean = publishMavenStyle, deliverIvyPattern: Option[String] = deliverIvyPattern, status: Option[String] = status, configurations: Option[scala.Vector[sbt.librarymanagement.ConfigRef]] = configurations, resolverName: Option[String] = resolverName, artifacts: Vector[scala.Tuple2[sbt.librarymanagement.Artifact, java.io.File]] = artifacts, checksums: scala.Vector[String] = checksums, logging: Option[sbt.librarymanagement.UpdateLogging] = logging, overwrite: Boolean = overwrite): PublishConfiguration = {
new PublishConfiguration(publishMavenStyle, deliverIvyPattern, status, configurations, resolverName, artifacts, checksums, logging, overwrite) new PublishConfiguration(publishMavenStyle, deliverIvyPattern, status, configurations, resolverName, artifacts, checksums, logging, overwrite)
} }
def withPublishMavenStyle(publishMavenStyle: Boolean): PublishConfiguration = { def withPublishMavenStyle(publishMavenStyle: Boolean): PublishConfiguration = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -23,7 +23,7 @@ final class RetrieveConfiguration private (
override def toString: String = { override def toString: String = {
"RetrieveConfiguration(" + retrieveDirectory + ", " + outputPattern + ", " + sync + ", " + configurationsToRetrieve + ")" "RetrieveConfiguration(" + retrieveDirectory + ", " + outputPattern + ", " + sync + ", " + configurationsToRetrieve + ")"
} }
private[this] def copy(retrieveDirectory: Option[java.io.File] = retrieveDirectory, outputPattern: Option[String] = outputPattern, sync: Boolean = sync, configurationsToRetrieve: Option[scala.Vector[sbt.librarymanagement.ConfigRef]] = configurationsToRetrieve): RetrieveConfiguration = { private def copy(retrieveDirectory: Option[java.io.File] = retrieveDirectory, outputPattern: Option[String] = outputPattern, sync: Boolean = sync, configurationsToRetrieve: Option[scala.Vector[sbt.librarymanagement.ConfigRef]] = configurationsToRetrieve): RetrieveConfiguration = {
new RetrieveConfiguration(retrieveDirectory, outputPattern, sync, configurationsToRetrieve) new RetrieveConfiguration(retrieveDirectory, outputPattern, sync, configurationsToRetrieve)
} }
def withRetrieveDirectory(retrieveDirectory: Option[java.io.File]): RetrieveConfiguration = { def withRetrieveDirectory(retrieveDirectory: Option[java.io.File]): RetrieveConfiguration = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -28,7 +28,7 @@ final class ScalaModuleInfo private (
override def toString: String = { override def toString: String = {
"ScalaModuleInfo(" + scalaFullVersion + ", " + scalaBinaryVersion + ", " + configurations + ", " + checkExplicit + ", " + filterImplicit + ", " + overrideScalaVersion + ", " + scalaOrganization + ", " + scalaArtifacts + ", " + platform + ")" "ScalaModuleInfo(" + scalaFullVersion + ", " + scalaBinaryVersion + ", " + configurations + ", " + checkExplicit + ", " + filterImplicit + ", " + overrideScalaVersion + ", " + scalaOrganization + ", " + scalaArtifacts + ", " + platform + ")"
} }
private[this] def copy(scalaFullVersion: String = scalaFullVersion, scalaBinaryVersion: String = scalaBinaryVersion, configurations: Vector[sbt.librarymanagement.Configuration] = configurations, checkExplicit: Boolean = checkExplicit, filterImplicit: Boolean = filterImplicit, overrideScalaVersion: Boolean = overrideScalaVersion, scalaOrganization: String = scalaOrganization, scalaArtifacts: scala.Vector[String] = scalaArtifacts, platform: Option[String] = platform): ScalaModuleInfo = { private def copy(scalaFullVersion: String = scalaFullVersion, scalaBinaryVersion: String = scalaBinaryVersion, configurations: Vector[sbt.librarymanagement.Configuration] = configurations, checkExplicit: Boolean = checkExplicit, filterImplicit: Boolean = filterImplicit, overrideScalaVersion: Boolean = overrideScalaVersion, scalaOrganization: String = scalaOrganization, scalaArtifacts: scala.Vector[String] = scalaArtifacts, platform: Option[String] = platform): ScalaModuleInfo = {
new ScalaModuleInfo(scalaFullVersion, scalaBinaryVersion, configurations, checkExplicit, filterImplicit, overrideScalaVersion, scalaOrganization, scalaArtifacts, platform) new ScalaModuleInfo(scalaFullVersion, scalaBinaryVersion, configurations, checkExplicit, filterImplicit, overrideScalaVersion, scalaOrganization, scalaArtifacts, platform)
} }
def withScalaFullVersion(scalaFullVersion: String): ScalaModuleInfo = { def withScalaFullVersion(scalaFullVersion: String): ScalaModuleInfo = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -22,7 +22,7 @@ final class ScmInfo private (
override def toString: String = { override def toString: String = {
"ScmInfo(" + browseUrl + ", " + connection + ", " + devConnection + ")" "ScmInfo(" + browseUrl + ", " + connection + ", " + devConnection + ")"
} }
private[this] def copy(browseUrl: java.net.URI = browseUrl, connection: String = connection, devConnection: Option[String] = devConnection): ScmInfo = { private def copy(browseUrl: java.net.URI = browseUrl, connection: String = connection, devConnection: Option[String] = devConnection): ScmInfo = {
new ScmInfo(browseUrl, connection, devConnection) new ScmInfo(browseUrl, connection, devConnection)
} }
def withBrowseUrl(browseUrl: java.net.URI): ScmInfo = { def withBrowseUrl(browseUrl: java.net.URI): ScmInfo = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -73,7 +73,7 @@ final class SemanticSelector private (
override def toString: String = { override def toString: String = {
selectors.map(_.toString).mkString(" || ") selectors.map(_.toString).mkString(" || ")
} }
private[this] def copy(selectors: Seq[sbt.internal.librarymanagement.SemSelAndChunk] = selectors): SemanticSelector = { private def copy(selectors: Seq[sbt.internal.librarymanagement.SemSelAndChunk] = selectors): SemanticSelector = {
new SemanticSelector(selectors) new SemanticSelector(selectors)
} }
def withSelectors(selectors: Seq[sbt.internal.librarymanagement.SemSelAndChunk]): SemanticSelector = { def withSelectors(selectors: Seq[sbt.internal.librarymanagement.SemSelAndChunk]): SemanticSelector = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -23,7 +23,7 @@ final class SftpRepository private (
override def toString: String = { override def toString: String = {
"SftpRepository(" + name + ", " + patterns + ", " + connection + ")" "SftpRepository(" + name + ", " + patterns + ", " + connection + ")"
} }
private[this] def copy(name: String = name, patterns: sbt.librarymanagement.Patterns = patterns, connection: sbt.librarymanagement.SshConnection = connection): SftpRepository = { private def copy(name: String = name, patterns: sbt.librarymanagement.Patterns = patterns, connection: sbt.librarymanagement.SshConnection = connection): SftpRepository = {
new SftpRepository(name, patterns, connection) new SftpRepository(name, patterns, connection)
} }
def withName(name: String): SftpRepository = { def withName(name: String): SftpRepository = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -21,7 +21,7 @@ final class SshConnection private (
override def toString: String = { override def toString: String = {
"SshConnection(" + authentication + ", " + hostname + ", " + port + ")" "SshConnection(" + authentication + ", " + hostname + ", " + port + ")"
} }
private[this] def copy(authentication: Option[sbt.librarymanagement.SshAuthentication] = authentication, hostname: Option[String] = hostname, port: Option[Int] = port): SshConnection = { private def copy(authentication: Option[sbt.librarymanagement.SshAuthentication] = authentication, hostname: Option[String] = hostname, port: Option[Int] = port): SshConnection = {
new SshConnection(authentication, hostname, port) new SshConnection(authentication, hostname, port)
} }
def withAuthentication(authentication: Option[sbt.librarymanagement.SshAuthentication]): SshConnection = { def withAuthentication(authentication: Option[sbt.librarymanagement.SshAuthentication]): SshConnection = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -24,7 +24,7 @@ final class SshRepository private (
override def toString: String = { override def toString: String = {
"SshRepository(" + name + ", " + patterns + ", " + connection + ", " + publishPermissions + ")" "SshRepository(" + name + ", " + patterns + ", " + connection + ", " + publishPermissions + ")"
} }
private[this] def copy(name: String = name, patterns: sbt.librarymanagement.Patterns = patterns, connection: sbt.librarymanagement.SshConnection = connection, publishPermissions: Option[String] = publishPermissions): SshRepository = { private def copy(name: String = name, patterns: sbt.librarymanagement.Patterns = patterns, connection: sbt.librarymanagement.SshConnection = connection, publishPermissions: Option[String] = publishPermissions): SshRepository = {
new SshRepository(name, patterns, connection, publishPermissions) new SshRepository(name, patterns, connection, publishPermissions)
} }
def withName(name: String): SshRepository = { def withName(name: String): SshRepository = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -21,7 +21,7 @@ final class URLRepository private (
override def toString: String = { override def toString: String = {
"URLRepository(" + name + ", " + patterns + ", " + allowInsecureProtocol + ")" "URLRepository(" + name + ", " + patterns + ", " + allowInsecureProtocol + ")"
} }
private[this] def copy(name: String = name, patterns: sbt.librarymanagement.Patterns = patterns, allowInsecureProtocol: Boolean = allowInsecureProtocol): URLRepository = { private def copy(name: String = name, patterns: sbt.librarymanagement.Patterns = patterns, allowInsecureProtocol: Boolean = allowInsecureProtocol): URLRepository = {
new URLRepository(name, patterns, allowInsecureProtocol) new URLRepository(name, patterns, allowInsecureProtocol)
} }
def withName(name: String): URLRepository = { def withName(name: String): URLRepository = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -35,7 +35,7 @@ final class UpdateConfiguration private (
override def toString: String = { override def toString: String = {
"UpdateConfiguration(" + retrieveManaged + ", " + missingOk + ", " + logging + ", " + logicalClock + ", " + metadataDirectory + ", " + artifactFilter + ", " + offline + ", " + frozen + ")" "UpdateConfiguration(" + retrieveManaged + ", " + missingOk + ", " + logging + ", " + logicalClock + ", " + metadataDirectory + ", " + artifactFilter + ", " + offline + ", " + frozen + ")"
} }
private[this] def copy(retrieveManaged: Option[sbt.librarymanagement.RetrieveConfiguration] = retrieveManaged, missingOk: Boolean = missingOk, logging: sbt.librarymanagement.UpdateLogging = logging, logicalClock: sbt.librarymanagement.LogicalClock = logicalClock, metadataDirectory: Option[java.io.File] = metadataDirectory, artifactFilter: Option[sbt.librarymanagement.ArtifactTypeFilter] = artifactFilter, offline: Boolean = offline, frozen: Boolean = frozen): UpdateConfiguration = { private def copy(retrieveManaged: Option[sbt.librarymanagement.RetrieveConfiguration] = retrieveManaged, missingOk: Boolean = missingOk, logging: sbt.librarymanagement.UpdateLogging = logging, logicalClock: sbt.librarymanagement.LogicalClock = logicalClock, metadataDirectory: Option[java.io.File] = metadataDirectory, artifactFilter: Option[sbt.librarymanagement.ArtifactTypeFilter] = artifactFilter, offline: Boolean = offline, frozen: Boolean = frozen): UpdateConfiguration = {
new UpdateConfiguration(retrieveManaged, missingOk, logging, logicalClock, metadataDirectory, artifactFilter, offline, frozen) new UpdateConfiguration(retrieveManaged, missingOk, logging, logicalClock, metadataDirectory, artifactFilter, offline, frozen)
} }
def withRetrieveManaged(retrieveManaged: Option[sbt.librarymanagement.RetrieveConfiguration]): UpdateConfiguration = { def withRetrieveManaged(retrieveManaged: Option[sbt.librarymanagement.RetrieveConfiguration]): UpdateConfiguration = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -30,7 +30,7 @@ final class UpdateReport private (
override def toString: String = { override def toString: String = {
"Update report:\n\t" + stats + "\n" + configurations.mkString "Update report:\n\t" + stats + "\n" + configurations.mkString
} }
private[this] def copy(cachedDescriptor: java.io.File = cachedDescriptor, configurations: Vector[sbt.librarymanagement.ConfigurationReport] = configurations, stats: sbt.librarymanagement.UpdateStats = stats, stamps: Map[String, Long] = stamps): UpdateReport = { private def copy(cachedDescriptor: java.io.File = cachedDescriptor, configurations: Vector[sbt.librarymanagement.ConfigurationReport] = configurations, stats: sbt.librarymanagement.UpdateStats = stats, stamps: Map[String, Long] = stamps): UpdateReport = {
new UpdateReport(cachedDescriptor, configurations, stats, stamps) new UpdateReport(cachedDescriptor, configurations, stats, stamps)
} }
def withCachedDescriptor(cachedDescriptor: java.io.File): UpdateReport = { def withCachedDescriptor(cachedDescriptor: java.io.File): UpdateReport = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY
@ -22,7 +22,7 @@ final class UpdateStats private (
override def toString: String = { override def toString: String = {
Seq("Resolve time: " + resolveTime + " ms", "Download time: " + downloadTime + " ms", "Download size: " + downloadSize + " bytes").mkString(", ") Seq("Resolve time: " + resolveTime + " ms", "Download time: " + downloadTime + " ms", "Download size: " + downloadSize + " bytes").mkString(", ")
} }
private[this] def copy(resolveTime: Long = resolveTime, downloadTime: Long = downloadTime, downloadSize: Long = downloadSize, cached: Boolean = cached): UpdateStats = { private def copy(resolveTime: Long = resolveTime, downloadTime: Long = downloadTime, downloadSize: Long = downloadSize, cached: Boolean = cached): UpdateStats = {
new UpdateStats(resolveTime, downloadTime, downloadSize, cached) new UpdateStats(resolveTime, downloadTime, downloadSize, cached)
} }
def withResolveTime(resolveTime: Long): UpdateStats = { def withResolveTime(resolveTime: Long): UpdateStats = {

View File

@ -1,5 +1,5 @@
/** /**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]]. * This code is generated using [[https://www.scala-sbt.org/contraband]].
*/ */
// DO NOT EDIT MANUALLY // DO NOT EDIT MANUALLY

View File

@ -2,6 +2,6 @@ addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.0.0")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2") addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.8.1") addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.8.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.5.3") addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.6.0")
scalacOptions += "-language:postfixOps" scalacOptions += "-language:postfixOps"