@@ -80,42 +80,38 @@ object Build {
80
80
)
81
81
82
82
// Packages all subprojects to their jars
83
- lazy val packageAll =
84
- taskKey[Map [String , String ]](" Package everything needed to run tests" )
83
+ val packageAll = taskKey[Map [String , String ]](" Package everything needed to run tests" )
85
84
86
85
// Run tests with filter through vulpix test suite
87
- lazy val testCompilation = inputKey[Unit ](" runs integration test with the supplied filter" )
86
+ val testCompilation = inputKey[Unit ](" runs integration test with the supplied filter" )
88
87
89
88
// Run TASTY tests with filter through vulpix test suite
90
- lazy val testFromTasty = inputKey[Unit ](" runs tasty integration test with the supplied filter" )
89
+ val testFromTasty = inputKey[Unit ](" runs tasty integration test with the supplied filter" )
91
90
92
91
// Spawns a repl with the correct classpath
93
- lazy val repl = inputKey[Unit ](" run the REPL with correct classpath" )
92
+ val repl = inputKey[Unit ](" run the REPL with correct classpath" )
94
93
95
94
// Used to compile files similar to ./bin/dotc script
96
- lazy val dotc =
97
- inputKey[Unit ](" run the compiler using the correct classpath, or the user supplied classpath" )
95
+ val dotc = inputKey[Unit ](" run the compiler using the correct classpath, or the user supplied classpath" )
98
96
99
97
// Used to run binaries similar to ./bin/dotr script
100
- lazy val dotr =
101
- inputKey[Unit ](" run compiled binary using the correct classpath, or the user supplied classpath" )
102
-
98
+ val dotr = inputKey[Unit ](" run compiled binary using the correct classpath, or the user supplied classpath" )
103
99
104
100
// Compiles the documentation and static site
105
- lazy val genDocs = taskKey[Unit ](" run dottydoc to generate static documentation site" )
101
+ val genDocs = taskKey[Unit ](" run dottydoc to generate static documentation site" )
106
102
107
103
// Shorthand for compiling a docs site
108
- lazy val dottydoc = inputKey[Unit ](" run dottydoc" )
104
+ val dottydoc = inputKey[Unit ](" run dottydoc" )
109
105
110
- lazy val bootstrapFromPublishedJars = settingKey[Boolean ](" If true, bootstrap dotty from published non-bootstrapped dotty" )
106
+ val bootstrapFromPublishedJars = settingKey[Boolean ](" If true, bootstrap dotty from published non-bootstrapped dotty" )
111
107
112
108
// Only available in vscode-dotty
113
- lazy val unpublish = taskKey[Unit ](" Unpublish a package" )
109
+ val unpublish = taskKey[Unit ](" Unpublish a package" )
114
110
115
111
// Settings used to configure the test language server
116
- lazy val ideTestsCompilerVersion = taskKey[String ](" Compiler version to use in IDE tests" )
117
- lazy val ideTestsCompilerArguments = taskKey[Seq [String ]](" Compiler arguments to use in IDE tests" )
118
- lazy val ideTestsDependencyClasspath = taskKey[Seq [File ]](" Dependency classpath to use in IDE tests" )
112
+ val ideTestsCompilerVersion = taskKey[String ](" Compiler version to use in IDE tests" )
113
+ val ideTestsCompilerArguments = taskKey[Seq [String ]](" Compiler arguments to use in IDE tests" )
114
+ val ideTestsDependencyClasspath = taskKey[Seq [File ]](" Dependency classpath to use in IDE tests" )
119
115
120
116
lazy val SourceDeps = config(" sourcedeps" )
121
117
0 commit comments