Skip to content

Gradle Plugin: Allow for one-line direct property definition #34

@julioz

Description

@julioz

Enforced by this (currently ignored) test.

Instead of forcing a full block like for the output format, like

floorPlan {
  outputFormat {
    svg { 
      enabled = true
    }
  }
}

We could allow for

floorPlan {
  outputFormat {
    svg.enabled = value
  }
}

or even simpler:

floorPlan {
  outputFormat.svg.enabled = value
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Gradle PluginWork related to the Gradle Plugin componenthacktoberfestCheck out https://hacktoberfest.digitalocean.com and contribute!

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions