curie-build 0.6.0

The Curie build tool
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
mod add_remove;
mod api_search;
mod api_search_ui;
mod version_ui;
mod audit;
mod setup;
mod inspect_ui;
mod build;
mod class_manifest;
mod compile;
mod config;
mod deps;
mod descriptor;
mod docker;
mod fmt;
mod git;
mod incremental;
mod jar;
mod kt_stale;
mod main_class;
mod native;
mod new;
mod parallel;
mod pom_writer;
mod proc;
mod publish;
mod run;
mod sources_jar;
mod style;
mod term;
mod test;
mod test_runner;
mod tui;
mod update;
mod workspace;
mod wrapper;

use clap::{Parser, Subcommand};
use std::path::PathBuf;

#[derive(Parser)]
#[command(
    name = "curie",
    about = "The Curie build tool",
    version,
    long_version = concat!(env!("CARGO_PKG_VERSION"), " (", env!("GIT_COMMIT_HASH"), ")")
)]
struct Cli {
    /// Path to the project root (defaults to current directory)
    #[arg(long, default_value = ".")]
    project: PathBuf,

    #[command(subcommand)]
    command: Cmd,
}

#[derive(Subcommand)]
enum Cmd {
    /// Compile the project, run tests, package a JAR, and (when applicable) build a Docker image
    Build {
        /// Skip Docker build even when Docker support is configured
        #[arg(long)]
        no_docker: bool,

        /// Skip native-image compilation even when [native-image] is configured
        #[arg(long)]
        no_native: bool,

        /// Do not access the network; use only locally cached artifacts
        #[arg(long)]
        offline: bool,

        /// Maximum number of workspace members to build in parallel (default: CPU count)
        #[arg(short = 'j', long)]
        jobs: Option<usize>,
    },
    /// Compile the project and run its tests (no JAR or Docker build)
    Test {
        /// Only run tests whose fully-qualified class name matches this pattern
        #[arg(long)]
        filter: Option<String>,

        /// Do not access the network; use only locally cached artifacts
        #[arg(long)]
        offline: bool,

        /// Maximum number of workspace members to test in parallel (default: CPU count)
        #[arg(short = 'j', long)]
        jobs: Option<usize>,
    },
    /// Build the project and run it (via Docker or java -jar)
    Run {
        /// Skip Docker; run directly with java -jar
        #[arg(long)]
        no_docker: bool,

        /// Do not access the network; use only locally cached artifacts
        #[arg(long)]
        offline: bool,

        /// Arguments to pass to the application (after --)
        #[arg(trailing_var_arg = true, allow_hyphen_values = true)]
        args: Vec<String>,
    },
    /// Remove the target/ build directory
    Clean {
        /// Maximum number of workspace members to clean in parallel (default: CPU count)
        #[arg(short = 'j', long)]
        jobs: Option<usize>,
    },
    /// Compile the project and produce a GraalVM native binary (skips tests)
    ///
    /// Runs the full build pipeline (compile, package JAR) and then invokes
    /// `native-image`.  Tests are intentionally skipped so the command is
    /// fast enough for the inner compile→native iteration loop.  Use
    /// `curie build` to also run tests before compiling the native binary.
    ///
    /// Requires GraalVM to be installed.  Curie looks for the `native-image`
    /// executable in $GRAALVM_HOME/bin first, then on $PATH.
    Native {
        /// Do not access the network; use only locally cached artifacts
        #[arg(long)]
        offline: bool,
    },
    /// Show the workspace tree (focused on the current project by default)
    List {
        /// Show the full workspace tree including unrelated siblings
        #[arg(long)]
        all: bool,
    },
    /// Format Java source files with palantir-java-format
    Fmt {
        /// Check formatting without modifying files; exit non-zero if any
        /// file would be reformatted (useful in CI)
        #[arg(long)]
        check: bool,

        /// Do not download formatter JARs; fail if not already cached
        #[arg(long)]
        offline: bool,

        /// Maximum number of members to format in parallel
        #[arg(short, long)]
        jobs: Option<usize>,
    },
    /// Print the dependency tree; optionally explain why a specific artifact was chosen
    Deps {
        /// Explain why this artifact was selected (e.g. "org.foo:bar" or "org.foo:bar:1.0")
        #[arg(long)]
        why: Option<String>,
        /// Show [test-dependencies] instead of [dependencies]
        #[arg(long)]
        tests: bool,
        /// Use only locally cached POMs; do not download
        #[arg(long)]
        offline: bool,
    },
    /// Build, sign, and upload artifacts to a Maven repository
    Publish {
        /// Override [publish] repository/url with an inline URL
        #[arg(long)]
        repo: Option<String>,

        /// Skip GPG signing (overrides [publish] sign = true)
        #[arg(long = "no-sign")]
        no_sign: bool,

        /// Skip building the javadoc jar (overrides [publish] javadoc = true)
        #[arg(long = "no-javadoc")]
        no_javadoc: bool,

        /// Build and prepare all artifacts but do not PUT them
        #[arg(long = "dry-run")]
        dry_run: bool,
    },
    /// Check for newer stable versions of all versioned dependencies and optionally update Curie.toml
    Update {
        /// Report available updates but do not rewrite Curie.toml; exit 1 when any updates exist
        #[arg(long)]
        check: bool,

        /// Do not access the network; skip the update check
        #[arg(long)]
        offline: bool,

        /// Skip [test-dependencies] and [test-bom-imports]
        #[arg(long = "no-test")]
        no_test: bool,
    },
    /// Emit a CycloneDX 1.6 SBOM and check dependencies against the OSV vulnerability database
    Audit {
        /// Include test-scope dependencies in the SBOM and scan
        #[arg(long = "include-test")]
        include_test: bool,

        /// Skip the OSV network call; only emit the SBOM
        #[arg(long)]
        offline: bool,

        /// Show vuln IDs only, skip fetching full detail; exit 1 on any finding
        #[arg(long)]
        short: bool,

        /// CVSS score threshold for a non-zero exit (default: 7.0)
        #[arg(long, default_value = "7.0")]
        severity: f32,

        /// Override the SBOM output path (default: target/sbom.cdx.json)
        #[arg(long)]
        output: Option<std::path::PathBuf>,
    },
    /// Add a dependency to Curie.toml
    Add {
        /// Coordinate: "group:artifact" or "group:artifact@version".
        /// Omit to open the interactive artifact search UI.
        coord: Option<String>,
        /// Add to [test-dependencies] instead of [dependencies]
        #[arg(long)]
        test: bool,
        /// Add to [annotation-processors] (combine with --test for [test-annotation-processors])
        #[arg(long = "annotation-processor")]
        annotation_processor: bool,
        /// Add to [bom-imports] (combine with --test for [test-bom-imports]); requires @version
        #[arg(long)]
        bom: bool,
        /// Do not access the network; fail if a version must be resolved
        #[arg(long)]
        offline: bool,
    },
    /// Remove a dependency from Curie.toml
    Remove {
        /// Coordinate: "group:artifact" (a trailing @version is accepted but ignored)
        coord: String,
        /// Remove from [test-dependencies]
        #[arg(long)]
        test: bool,
        /// Remove from [annotation-processors] (combine with --test for [test-annotation-processors])
        #[arg(long = "annotation-processor")]
        annotation_processor: bool,
        /// Remove from [bom-imports] (combine with --test for [test-bom-imports])
        #[arg(long)]
        bom: bool,
    },
    /// Inspect the merged logs of the last build in an interactive TUI
    Inspect {},

    /// Download and install shell completions for the detected shell
    ///
    /// Detects your shell from $SHELL, then downloads the completion script
    /// that matches this exact binary version from GitHub and installs it to
    /// the conventional per-user completions directory.
    Setup {
        /// Override shell detection: fish, bash, or zsh
        #[arg(long, value_name = "SHELL")]
        shell: Option<String>,
    },

    /// Scaffold a new Curie project in a new subdirectory
    New {
        /// Project kind: app, lib, or workspace
        kind: new::ProjectKind,

        /// Project name (defaults to current directory name for app/lib)
        name: Option<String>,

        /// Root Java package, e.g. com.example.myapp (derived from name when absent)
        #[arg(long)]
        package: Option<String>,
    },
    /// Initialise a Curie project in the current directory
    Init {
        /// Project kind: app, lib, or workspace
        kind: new::ProjectKind,

        /// Root Java package, e.g. com.example.myapp (derived from directory name when absent)
        #[arg(long)]
        package: Option<String>,
    },
}

fn main() {
    let cli = Cli::parse();

    // `curie new`, `curie init`, and `curie setup` don't operate on an
    // existing project.  Skip workspace discovery entirely for them.
    let early_result = match &cli.command {
        Cmd::New { kind, name, package } => {
            Some(new::run_new(*kind, name.clone(), package.clone()))
        }
        Cmd::Init { kind, package } => {
            Some(new::run_init(*kind, package.clone()))
        }
        Cmd::Setup { shell } => {
            Some(setup::run_setup(shell.clone()))
        }
        _ => None,
    };
    if let Some(result) = early_result {
        if let Err(e) = result {
            eprintln!("error: {:#}", e);
            std::process::exit(1);
        }
        return;
    }

    // Discovery is done once per invocation so every command sees a
    // consistent view of (project, surrounding workspace) — and so a
    // failure to discover surfaces before the command-specific logic
    // gets a chance to throw a less-useful error.
    let ctx = match workspace::discover(&cli.project) {
        Ok(c) => c,
        Err(e) => {
            eprintln!("error: {:#}", e);
            std::process::exit(1);
        }
    };

    let result = match cli.command {
        Cmd::Build { no_docker, no_native, offline, jobs } => {
            let opts = build::BuildOptions { no_docker, no_native, offline };
            let jobs = resolve_jobs(jobs);
            match &ctx {
                workspace::WorkspaceContext::WorkspaceRoot(root) => {
                    workspace::build_all(root, opts, jobs)
                }
                workspace::WorkspaceContext::WorkspaceMember { workspace_root, member_index } => {
                    workspace::build_one(workspace_root, *member_index, opts, jobs)
                }
                workspace::WorkspaceContext::WorkspaceSubtree { workspace_root, member_indices } => {
                    workspace::build_subtree(workspace_root, member_indices, opts, jobs)
                }
                workspace::WorkspaceContext::Standalone(project) => {
                    build::build(project, opts)
                }
            }
        }
        Cmd::Test { filter, offline, jobs } => {
            let jobs = resolve_jobs(jobs);
            match &ctx {
                workspace::WorkspaceContext::WorkspaceRoot(root) => {
                    workspace::test_all(root, filter.as_deref(), offline, jobs)
                }
                workspace::WorkspaceContext::WorkspaceMember { workspace_root, member_index } => {
                    workspace::test_one(workspace_root, *member_index, filter.as_deref(), offline, jobs)
                }
                workspace::WorkspaceContext::WorkspaceSubtree { workspace_root, member_indices } => {
                    workspace::test_subtree(workspace_root, member_indices, filter.as_deref(), offline, jobs)
                }
                workspace::WorkspaceContext::Standalone(project) => {
                    test_single_module(project, filter.as_deref(), offline)
                }
            }
        }
        Cmd::Run { no_docker, offline, args } => match &ctx {
            workspace::WorkspaceContext::WorkspaceRoot(_)
            | workspace::WorkspaceContext::WorkspaceSubtree { .. } => Err(anyhow::anyhow!(
                "`curie run` is ambiguous in a workspace.  Re-run with \
                 --project <member> to choose one, e.g.\n  \
                 curie --project examples/hello-world run"
            )),
            workspace::WorkspaceContext::WorkspaceMember { workspace_root, member_index } => {
                let opts = run::RunOptions { no_docker, offline };
                // Members without [workspace-dependencies] don't need
                // the workspace-aware runtime classpath; the standalone
                // path also keeps Docker working for them.  Members WITH
                // workspace-deps go through run_one so their upstream
                // members' JARs land on -cp.
                let has_ws_deps = match descriptor::load(&cli.project) {
                    Ok(d) => !d.workspace_dependencies.is_empty(),
                    Err(_) => false,
                };
                if has_ws_deps {
                    workspace::run_one(workspace_root, *member_index, opts, &args)
                } else {
                    run::run(&cli.project, opts, &args)
                }
            }
            workspace::WorkspaceContext::Standalone(project) => {
                run::run(project, run::RunOptions { no_docker, offline }, &args)
            }
        },
        Cmd::Clean { jobs } => {
            let jobs = resolve_jobs(jobs);
            match &ctx {
                workspace::WorkspaceContext::WorkspaceRoot(root) => workspace::clean_all(root, jobs),
                workspace::WorkspaceContext::WorkspaceSubtree { workspace_root, member_indices } => {
                    workspace::clean_subtree(workspace_root, member_indices, jobs)
                }
                workspace::WorkspaceContext::WorkspaceMember { .. } => {
                    build::clean(&cli.project)
                }
                workspace::WorkspaceContext::Standalone(project) => build::clean(project),
            }
        }
        Cmd::Native { offline } => match &ctx {
            workspace::WorkspaceContext::WorkspaceRoot(_)
            | workspace::WorkspaceContext::WorkspaceSubtree { .. } => Err(anyhow::anyhow!(
                "`curie native` is ambiguous in a workspace — native binaries are \
                 per-application.  Re-run with --project <member>, e.g.\n  \
                 curie --project examples/graalvm-hello native"
            )),
            workspace::WorkspaceContext::WorkspaceMember { .. }
            | workspace::WorkspaceContext::Standalone(_) => {
                native_single_module(&cli.project, offline)
            }
        },
        Cmd::List { all } => match &ctx {
            workspace::WorkspaceContext::WorkspaceRoot(root)
            | workspace::WorkspaceContext::WorkspaceMember { workspace_root: root, .. }
            | workspace::WorkspaceContext::WorkspaceSubtree { workspace_root: root, .. } => {
                workspace::list(root, &cli.project, all, crate::term::use_color())
            }
            workspace::WorkspaceContext::Standalone(project) => {
                workspace::list(project, project, all, crate::term::use_color())
            }
        },
        Cmd::Fmt { check, offline, jobs } => {
            let jobs = resolve_jobs(jobs);
            match &ctx {
            workspace::WorkspaceContext::WorkspaceRoot(root) => {
                workspace::fmt_all(root, check, offline, jobs)
            }
            workspace::WorkspaceContext::WorkspaceSubtree { workspace_root, member_indices } => {
                workspace::fmt_subtree(workspace_root, member_indices, check, offline, jobs)
            }
            workspace::WorkspaceContext::WorkspaceMember { .. } => {
                fmt::run_fmt(&cli.project, check, offline)
            }
            workspace::WorkspaceContext::Standalone(project) => {
                fmt::run_fmt(project, check, offline)
            }
        }},
        Cmd::Deps { why, tests, offline } => match &ctx {
            workspace::WorkspaceContext::WorkspaceRoot(_)
            | workspace::WorkspaceContext::WorkspaceSubtree { .. } => Err(anyhow::anyhow!(
                "`curie deps` cannot run on a workspace root; \
                 target a member with --project"
            )),
            workspace::WorkspaceContext::WorkspaceMember { workspace_root, member_index } => {
                deps::run_deps_workspace_member(
                    workspace_root, *member_index, why.as_deref(), tests, offline,
                )
            }
            workspace::WorkspaceContext::Standalone(project) => {
                deps::run_deps(project, why.as_deref(), tests, offline)
            }
        },
        Cmd::Publish { repo, no_sign, no_javadoc, dry_run } => {
            let target = match &ctx {
                workspace::WorkspaceContext::WorkspaceRoot(_)
                | workspace::WorkspaceContext::WorkspaceSubtree { .. } => {
                    Err(anyhow::anyhow!(
                        "`curie publish` cannot run on a workspace root; target a member with --project"
                    ))
                }
                workspace::WorkspaceContext::WorkspaceMember { .. }
                | workspace::WorkspaceContext::Standalone(_) => Ok(cli.project.clone()),
            };
            match target {
                Ok(project) => publish::publish(
                    &project,
                    publish::PublishOptions {
                        repo_url: repo,
                        no_sign,
                        no_javadoc,
                        dry_run,
                        skip_tests: false,
                    },
                ),
                Err(e) => Err(e),
            }
        }
        Cmd::Update { check, offline, no_test } => {
            let opts = update::UpdateOptions {
                check,
                offline,
                include_test: !no_test,
            };
            let any_updates = match &ctx {
                workspace::WorkspaceContext::WorkspaceRoot(root) => {
                    workspace::update_all(root, &opts)
                }
                workspace::WorkspaceContext::WorkspaceMember { workspace_root, member_index } => {
                    workspace::update_one(workspace_root, *member_index, &opts)
                }
                workspace::WorkspaceContext::WorkspaceSubtree { workspace_root, member_indices } => {
                    workspace::update_subtree(workspace_root, member_indices, &opts)
                }
                workspace::WorkspaceContext::Standalone(project) => {
                    match update::run_update(project, &opts) {
                        Ok(report) => Ok(report.has_updates()),
                        Err(e) => Err(e),
                    }
                }
            };
            match any_updates {
                Ok(true) if check => {
                    std::process::exit(1);
                }
                Ok(_) => return,
                Err(e) => Err(e),
            }
        }
        Cmd::Audit { include_test, offline, short, severity, output } => {
            let opts = audit::AuditOptions {
                include_test,
                offline,
                full: !short,
                severity,
                output,
            };
            let exit_nonzero = match &ctx {
                workspace::WorkspaceContext::WorkspaceRoot(root) => {
                    workspace::audit_all(root, &opts)
                }
                workspace::WorkspaceContext::WorkspaceMember { workspace_root, member_index } => {
                    workspace::audit_one(workspace_root, *member_index, &opts)
                }
                workspace::WorkspaceContext::WorkspaceSubtree { workspace_root, member_indices } => {
                    workspace::audit_subtree(workspace_root, member_indices, &opts)
                }
                workspace::WorkspaceContext::Standalone(project) => {
                    match audit::run_audit(project, &opts) {
                        Ok(report) => Ok(audit::should_exit_nonzero(&report, &opts)),
                        Err(e) => Err(e),
                    }
                }
            };
            match exit_nonzero {
                Ok(true) => {
                    std::process::exit(1);
                }
                Ok(false) => return,
                Err(e) => Err(e),
            }
        }
        Cmd::Inspect {} => run_inspect(&ctx),

        // Handled above in the early-exit block; unreachable at runtime.
        Cmd::New { .. } | Cmd::Init { .. } => unreachable!(),
        Cmd::Add { coord, test, annotation_processor, bom, offline } => match &ctx {
            workspace::WorkspaceContext::WorkspaceRoot(_)
            | workspace::WorkspaceContext::WorkspaceSubtree { .. } => Err(anyhow::anyhow!(
                "`curie add` cannot run on a workspace root; \
                 target a member with --project"
            )),
            workspace::WorkspaceContext::WorkspaceMember { .. }
            | workspace::WorkspaceContext::Standalone(_) => {
                add_remove::run_add(
                    &cli.project,
                    coord.as_deref(),
                    add_remove::AddOptions { test, annotation_processor, bom, offline },
                )
            }
        },
        Cmd::Remove { coord, test, annotation_processor, bom } => match &ctx {
            workspace::WorkspaceContext::WorkspaceRoot(_)
            | workspace::WorkspaceContext::WorkspaceSubtree { .. } => Err(anyhow::anyhow!(
                "`curie remove` cannot run on a workspace root; \
                 target a member with --project"
            )),
            workspace::WorkspaceContext::WorkspaceMember { .. }
            | workspace::WorkspaceContext::Standalone(_) => {
                add_remove::run_remove(
                    &cli.project,
                    &coord,
                    add_remove::RemoveOptions { test, annotation_processor, bom },
                )
            }
        },
        // Handled before workspace discovery in the early_result block above.
        Cmd::Setup { .. } => unreachable!(),
    };

    if let Err(e) = result {
        eprintln!("error: {:#}", e);
        std::process::exit(1);
    }
}

/// Single-module variant of the test pipeline.  Lifted out of the inline
/// match arm so the workspace fan-out can reuse the same conceptual flow
/// (see `workspace::run_member_tests`) without duplicating the printf.
fn test_single_module(project: &std::path::Path, filter: Option<&str>, offline: bool) -> anyhow::Result<()> {
    let desc = descriptor::load(project)?;
    println!(
        "Testing {} v{}",
        desc.buildable_name(),
        desc.buildable_version()
    );
    let compiled = compile::compile(project, &desc, offline, &[])?;
    test::run_tests(
        project,
        &desc,
        &compiled.classes_dir,
        &compiled.dep_jars,
        &compiled.kotlin_stdlib_jars,
        &compiled.groovy_jars,
        compiled.resources_dir.as_deref(),
        compiled.test_resources_dir.as_deref(),
        filter,
        offline,
        &[],
    )?;
    Ok(())
}

/// Single-module variant of the native-image pipeline.
///
/// Runs compile → package JAR (no tests) → native-image.  Tests are
/// intentionally skipped so this command is fast enough for the inner
/// compile→native iteration loop.  The `[native-image]` section must be
/// present in `Curie.toml`; if it is absent this function errors early.
fn native_single_module(project: &std::path::Path, offline: bool) -> anyhow::Result<()> {
    let desc = descriptor::load(project)?;

    if !descriptor::native_image_enabled(&desc) {
        anyhow::bail!(
            "native-image is not enabled for this project.\n\
             Add a [native-image] section to Curie.toml to enable it, e.g.:\n\n  \
             [native-image]\n  extraArgs = [\"--no-fallback\"]"
        );
    }

    println!(
        "Native  {} v{}",
        desc.buildable_name(),
        desc.buildable_version()
    );

    // compile + package JAR, skipping tests and Docker
    let opts = build::BuildOptions {
        no_docker: true,
        no_native: true, // we call native::build_native ourselves below
        offline,
    };
    let output = build::build_with_desc(project, &desc, opts, &[])?;

    native::build_native(project, &desc, &output.jar, &output.dep_jars)?;

    Ok(())
}

/// Dispatch `curie inspect` for all four workspace contexts.
fn run_inspect(ctx: &workspace::WorkspaceContext) -> anyhow::Result<()> {
    use inspect_ui::{LogTarget, run_inspect_ui};
    match ctx {
        workspace::WorkspaceContext::WorkspaceRoot(root) => {
            let ws      = workspace::load(root)?;
            let targets = member_targets(&ws.members);
            run_inspect_ui(root, &targets, "build", None)
        }
        workspace::WorkspaceContext::WorkspaceMember { workspace_root, member_index } => {
            let ws      = workspace::load(workspace_root)?;
            let targets = member_targets(&ws.members);
            run_inspect_ui(workspace_root, &targets, "build", Some(*member_index))
        }
        workspace::WorkspaceContext::WorkspaceSubtree { workspace_root, member_indices } => {
            let ws      = workspace::load(workspace_root)?;
            let targets: Vec<LogTarget> = member_indices.iter()
                .map(|&i| LogTarget {
                    declared: ws.members[i].declared.clone(),
                    path:     ws.members[i].path.clone(),
                })
                .collect();
            run_inspect_ui(workspace_root, &targets, "build", None)
        }
        workspace::WorkspaceContext::Standalone(path) => {
            let name = path.file_name()
                .and_then(|n| n.to_str())
                .unwrap_or("project")
                .to_string();
            let targets = vec![LogTarget { declared: name, path: path.clone() }];
            run_inspect_ui(path, &targets, "build", None)
        }
    }
}

/// Build a `LogTarget` slice from workspace members for `curie inspect`.
fn member_targets(members: &[workspace::Member]) -> Vec<inspect_ui::LogTarget> {
    members.iter().map(|m| inspect_ui::LogTarget {
        declared: m.declared.clone(),
        path:     m.path.clone(),
    }).collect()
}

/// Resolve `--jobs` option: explicit value wins; default to available parallelism.
fn resolve_jobs(jobs: Option<usize>) -> usize {
    jobs.unwrap_or_else(|| {
        std::thread::available_parallelism()
            .map(|n| n.get())
            .unwrap_or(1)
    })
}