File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
modules/cli/src/main/scala/scala/cli/commands/export0 Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -518,6 +518,8 @@ trait Core extends ScalaCliCrossSbtModule
518
518
| def giter8Organization = " ${Deps .giter8.dep.module.organization.value}"
519
519
| def giter8Name = " ${Deps .giter8.dep.module.name.value}"
520
520
| def giter8Version = " ${Deps .giter8.dep.version}"
521
+ |
522
+ | def sbtVersion = " ${Deps .Versions .sbtVersion}"
521
523
|
522
524
| def mavenVersion = " ${Deps .Versions .mavenVersion}"
523
525
| def mavenScalaCompilerPluginVersion = " ${Deps .Versions .mavenScalaCompilerPluginVersion}"
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ object Export extends ScalaCommand[ExportOptions] {
238
238
project.print(System .out)
239
239
}
240
240
else {
241
- val sbtVersion = options.sbtVersion.getOrElse(" 1.10.2 " )
241
+ val sbtVersion = options.sbtVersion.getOrElse(Constants .sbtVersion )
242
242
val defaultMavenCompilerVersion = options.mvnVersion.getOrElse(Constants .mavenVersion)
243
243
val defaultScalaMavenCompilerVersion =
244
244
options.mvnScalaVersion.getOrElse(Constants .mavenScalaCompilerPluginVersion)
Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ object Deps {
124
124
def javaSemanticdb = " 0.10.0"
125
125
def javaClassName = " 0.1.3"
126
126
def bloop = " 2.0.0"
127
+ def sbtVersion = " 1.10.2"
127
128
def mavenVersion = " 3.8.1"
128
129
def mavenScalaCompilerPluginVersion = " 4.9.1"
129
130
def mavenExecPluginVersion = " 3.3.0"
You can’t perform that action at this time.
0 commit comments