chore(trait): Migrate the Quarkus trait to structured serialization
diff --git a/pkg/trait/quarkus.go b/pkg/trait/quarkus.go
index 36aeebb..bdd1d09 100644
--- a/pkg/trait/quarkus.go
+++ b/pkg/trait/quarkus.go
@@ -31,7 +31,7 @@
 type quarkusTrait struct {
 	BaseTrait `property:",squash"`
 	// The Quarkus runtime type (reserved for future use)
-	Native bool `property:"native"`
+	Native bool `property:"native" json:"native,omitempty"`
 }
 
 func newQuarkusTrait() Trait {