# Having problems setting IMPROVED\_POM\_SUPPORT feature

**URL:** https://discuss.gradle.org/t/having-problems-setting-improved-pom-support-feature/27598
**Category:** Help/Discuss
**Tags:** plugins
**Created:** [July 3, 2018, 11:37am UTC](https://discuss.gradle.org/t/having-problems-setting-improved-pom-support-feature/27598 "2018-07-03T11:37:30Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![ramgom](https://avatars.discourse-cdn.com/v4/letter/r/bcef8e/32.png) [@ramgom](https://discuss.gradle.org/u/ramgom)
#### Post date: [July 3, 2018, 11:37am UTC](https://discuss.gradle.org/t/having-problems-setting-improved-pom-support-feature/27598/1 "2018-07-03T11:37:30Z")

</div>

I’m creating a custom plugin and I would like to set the IMPROVED\_POM\_SUPPORT feature to enable so anyone using the plugin does not need to set it up in settings.gradle file

I’m doing the following but that doesn’t seem to work. Am I missing something?

```
 project.getGradle().settingsEvaluated((settings) -> {
        settings.enableFeaturePreview("IMPROVED_POM_SUPPORT");
    });

```

Any help appreciated
