All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.jhipster.lite.project.infrastructure.secondary.JHipsterPresetFilePropertiesConfiguration Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
package tech.jhipster.lite.project.infrastructure.secondary;

import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import tech.jhipster.lite.project.domain.resource.JHipsterPresetFile;

@Configuration
@EnableConfigurationProperties(JHipsterPresetFileProperties.class)
class JHipsterPresetFilePropertiesConfiguration {

  @Bean
  JHipsterPresetFile jhipsterPresetFile() {
    return new JHipsterPresetFile(new JHipsterPresetFileProperties().getName());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy