@@ -34,13 +34,19 @@ Generate BuildInfo for project
34
34
Add Scala compiler options
35
35
36
36
` //> using scalacOption ` _ option_
37
+
37
38
` //> using option ` _ option_
39
+
38
40
` //> using scalacOptions ` _ option1_ _ option2_ …
41
+
39
42
` //> using options ` _ option1_ _ option2_ …
40
43
41
44
` //> using test.scalacOption ` _ option_
45
+
42
46
` //> using test.option ` _ option_
47
+
43
48
` //> using test.scalacOptions ` _ option1_ _ option2_ …
49
+
44
50
` //> using test.options ` _ option1_ _ option2_ …
45
51
46
52
@@ -81,15 +87,19 @@ Method used to compute the version for BuildInfo
81
87
Manually add JAR(s) to the class path
82
88
83
89
` //> using jar ` _ path_
90
+
84
91
` //> using jars ` _ path1_ _ path2_ …
85
92
86
93
` //> using test.jar ` _ path_
94
+
87
95
` //> using test.jars ` _ path1_ _ path2_ …
88
96
89
97
` //> using source.jar ` _ path_
98
+
90
99
` //> using source.jars ` _ path1_ _ path2_ …
91
100
92
101
` //> using test.source.jar ` _ path_
102
+
93
103
` //> using test.source.jars ` _ path1_ _ path2_ …
94
104
95
105
@@ -121,19 +131,27 @@ Manually add sources to the project. Does not support chaining, sources are adde
121
131
Add dependencies
122
132
123
133
` //> using dep ` _ org_ ` : ` name` : ` ver
134
+
124
135
` //> using deps ` _ org_ ` : ` name` : ` ver _ org_ ` : ` name` : ` ver
136
+
125
137
` //> using dependencies ` _ org_ ` : ` name` : ` ver _ org_ ` : ` name` : ` ver
126
138
127
139
` //> using test.dep ` _ org_ ` : ` name` : ` ver
140
+
128
141
` //> using test.deps ` _ org_ ` : ` name` : ` ver _ org_ ` : ` name` : ` ver
142
+
129
143
` //> using test.dependencies ` _ org_ ` : ` name` : ` ver _ org_ ` : ` name` : ` ver
130
144
131
145
` //> using compileOnly.dep ` _ org_ ` : ` name` : ` ver
146
+
132
147
` //> using compileOnly.deps ` _ org_ ` : ` name` : ` ver _ org_ ` : ` name` : ` ver
148
+
133
149
` //> using compileOnly.dependencies ` _ org_ ` : ` name` : ` ver _ org_ ` : ` name` : ` ver
134
150
135
151
` //> using scalafix.dep ` _ org_ ` : ` name` : ` ver
152
+
136
153
` //> using scalafix.deps ` _ org_ ` : ` name` : ` ver _ org_ ` : ` name` : ` ver
154
+
137
155
` //> using scalafix.dependencies ` _ org_ ` : ` name` : ` ver _ org_ ` : ` name` : ` ver
138
156
139
157
@@ -209,9 +227,11 @@ Add Java options which will be passed when running an application.
209
227
Add Java properties
210
228
211
229
` //> using javaProp ` _ key=value_
230
+
212
231
` //> using javaProp ` _ key_
213
232
214
233
` //> using test.javaProp ` _ key=value_
234
+
215
235
` //> using test.javaProp ` _ key_
216
236
217
237
@@ -225,9 +245,11 @@ Add Java properties
225
245
Add Javac options which will be passed when compiling sources.
226
246
227
247
` //> using javacOpt ` _ options_
248
+
228
249
` //> using javacOptions ` _ options_
229
250
230
251
` //> using test.javacOpt ` _ options_
252
+
231
253
` //> using test.javacOptions ` _ options_
232
254
233
255
@@ -304,6 +326,7 @@ Set parameters for packaging
304
326
Set the default platform to Scala.js or Scala Native
305
327
306
328
` //> using platform ` (` jvm ` |` scala-js ` |` js ` |` scala-native ` |` native ` )+
329
+
307
330
` //> using platforms ` (` jvm ` |` scala-js ` |` js ` |` scala-native ` |` native ` )+
308
331
309
332
@@ -329,12 +352,15 @@ Set parameters for publishing
329
352
` //> using publish.license ` value
330
353
331
354
` //> using publish.vcs ` value
355
+
332
356
` //> using publish.scm ` value
357
+
333
358
` //> using publish.versionControl ` value
334
359
335
360
` //> using publish.description ` value
336
361
337
362
` //> using publish.developer ` value
363
+
338
364
` //> using publish.developers ` value1 value2
339
365
340
366
` //> using publish.scalaVersionSuffix ` value
@@ -447,9 +473,11 @@ Accepts predefined repositories supported by Coursier (like `sonatype:snapshots`
447
473
Manually add a resource directory to the class path
448
474
449
475
` //> using resourceDir ` _ path_
476
+
450
477
` //> using resourceDirs ` _ path1_ _ path2_ …
451
478
452
479
` //> using test.resourceDir ` _ path_
480
+
453
481
` //> using test.resourceDirs ` _ path1_ _ path2_ …
454
482
455
483
@@ -478,14 +506,17 @@ Add Scala Native options
478
506
` //> using nativeClang ` _ value_
479
507
480
508
` //> using nativeClangPP ` _ value_
509
+
481
510
` //> using nativeClangPp ` _ value_
482
511
483
512
` //> using nativeEmbedResources ` _ true|false_
513
+
484
514
` //> using nativeEmbedResources `
485
515
486
516
` //> using nativeTarget ` _ application|library-dynamic|library-static_
487
517
488
518
` //> using nativeMultithreading ` _ true|false_
519
+
489
520
` //> using nativeMultithreading `
490
521
491
522
#### Examples
@@ -540,39 +571,47 @@ Add Scala.js options
540
571
` //> using jsMode ` _ value_
541
572
542
573
` //> using jsNoOpt ` _ true|false_
574
+
543
575
` //> using jsNoOpt `
544
576
545
577
` //> using jsModuleKind ` _ value_
546
578
547
579
` //> using jsCheckIr ` _ true|false_
580
+
548
581
` //> using jsCheckIr `
549
582
550
583
` //> using jsEmitSourceMaps ` _ true|false_
584
+
551
585
` //> using jsEmitSourceMaps `
552
586
553
587
` //> using jsEsModuleImportMap ` _ value_
554
588
555
589
` //> using jsSmallModuleForPackage ` _ value1_ _ value2_ …
556
590
557
591
` //> using jsDom ` _ true|false_
592
+
558
593
` //> using jsDom `
559
594
560
595
` //> using jsHeader ` _ value_
561
596
562
597
` //> using jsAllowBigIntsForLongs ` _ true|false_
598
+
563
599
` //> using jsAllowBigIntsForLongs `
564
600
565
601
` //> using jsAvoidClasses ` _ true|false_
602
+
566
603
` //> using jsAvoidClasses `
567
604
568
605
` //> using jsAvoidLetsAndConsts ` _ true|false_
606
+
569
607
` //> using jsAvoidLetsAndConsts `
570
608
571
609
` //> using jsModuleSplitStyleStr ` _ value_
572
610
573
611
` //> using jsEsVersionStr ` _ value_
574
612
575
613
` //> using jsEmitWasm ` _ true|false_
614
+
576
615
` //> using jsEmitWasm `
577
616
578
617
0 commit comments