blob: 7723ef2a58b0364c6eb2cf85bf3182155ebb4ab1 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package trait
import (
v1 "github.com/apache/camel-k/pkg/apis/camel/v1"
"github.com/apache/camel-k/pkg/builder"
"github.com/apache/camel-k/pkg/builder/runtime"
)
// The Quarkus trait activates the Quarkus runtime.
//
// It's enabled by default.
//
// +camel-k:trait=quarkus
type quarkusTrait struct {
BaseTrait `property:",squash"`
// The Quarkus runtime type (reserved for future use)
Native bool `property:"native" json:"native,omitempty"`
}
func newQuarkusTrait() Trait {
return &quarkusTrait{
BaseTrait: NewBaseTrait("quarkus", 700),
}
}
func (t *quarkusTrait) isEnabled() bool {
return t.Enabled == nil || *t.Enabled
}
func (t *quarkusTrait) Configure(e *Environment) (bool, error) {
return t.isEnabled(), nil
}
func (t *quarkusTrait) Apply(e *Environment) error {
return nil
}
// InfluencesKit overrides base class method
func (t *quarkusTrait) InfluencesKit() bool {
return true
}
func (t *quarkusTrait) addBuildSteps(task *v1.BuilderTask) {
task.Steps = append(task.Steps, builder.StepIDsFor(runtime.QuarkusSteps...)...)
}