org.grails.cli.profile.DefaultFeature.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grace-shell Show documentation
Show all versions of grace-shell Show documentation
Grace Framework : Grace Shell
/*
* Copyright 2015-2024 the original author or authors.
*
* Licensed 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
*
* https://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 org.grails.cli.profile
import groovy.transform.CompileStatic
import groovy.transform.EqualsAndHashCode
import groovy.transform.ToString
import org.eclipse.aether.graph.Dependency
import org.yaml.snakeyaml.LoaderOptions
import org.yaml.snakeyaml.Yaml
import org.yaml.snakeyaml.constructor.SafeConstructor
import org.grails.config.NavigableMap
import org.grails.io.support.Resource
import static org.grails.cli.profile.ProfileUtil.createDependency
/**
* Default implementation of the {@link Feature} interface
*
* @author Graeme Rocher
* @author Michael Yan
* @since 3.1
*/
@EqualsAndHashCode(includes = ['name'])
@ToString(includes = ['profile', 'name'])
@CompileStatic
class DefaultFeature implements Feature {
final Profile profile
final String name
final Resource location
final NavigableMap configuration = new NavigableMap()
final List dependencies = []
final List buildPlugins
final List buildRepositories
DefaultFeature(Profile profile, String name, Resource location) {
this.profile = profile
this.name = name
this.location = location
Resource featureYml = location.createRelative('feature.yml')
Map featureConfig = new Yaml(new SafeConstructor(new LoaderOptions())).