plugins.sbt 333 字节
Newer Older
1
sys.props.get("plugin.version").orElse(Some("2.4.1")) match {
梦境迷离's avatar
梦境迷离 已提交
2 3 4 5
  case Some(x) => addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % x)
  case _ => sys.error("""|The system property 'plugin.version' is not defined.
                         |Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
}