├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main └── groovy │ └── net │ └── saliman │ └── gradle │ └── plugin │ └── properties │ ├── FileType.groovy │ ├── PropertiesPlugin.groovy │ └── PropertyFile.groovy └── test ├── groovy └── net │ └── saliman │ └── gradle │ └── plugin │ └── properties │ ├── BasePluginTest.groovy │ ├── PropertiesPluginChangePropertyNameTest.groovy │ ├── PropertiesPluginChildProjectTest.groovy │ └── PropertiesPluginParentProjectTest.groovy ├── java └── net │ └── saliman │ └── gradle │ └── plugin │ └── properties │ └── SetEnv.java └── resources ├── child-env-local-sub.properties ├── child-env-local.properties ├── child-env-test.properties ├── child-project-gradle.properties ├── home-gradle.properties ├── parent-env-local-sub.properties ├── parent-env-local.properties ├── parent-env-test.properties ├── parent-project-gradle.properties └── user-gradle.properties /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/groovy/net/saliman/gradle/plugin/properties/FileType.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/main/groovy/net/saliman/gradle/plugin/properties/FileType.groovy -------------------------------------------------------------------------------- /src/main/groovy/net/saliman/gradle/plugin/properties/PropertiesPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/main/groovy/net/saliman/gradle/plugin/properties/PropertiesPlugin.groovy -------------------------------------------------------------------------------- /src/main/groovy/net/saliman/gradle/plugin/properties/PropertyFile.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/main/groovy/net/saliman/gradle/plugin/properties/PropertyFile.groovy -------------------------------------------------------------------------------- /src/test/groovy/net/saliman/gradle/plugin/properties/BasePluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/groovy/net/saliman/gradle/plugin/properties/BasePluginTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/net/saliman/gradle/plugin/properties/PropertiesPluginChangePropertyNameTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/groovy/net/saliman/gradle/plugin/properties/PropertiesPluginChangePropertyNameTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/net/saliman/gradle/plugin/properties/PropertiesPluginChildProjectTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/groovy/net/saliman/gradle/plugin/properties/PropertiesPluginChildProjectTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/net/saliman/gradle/plugin/properties/PropertiesPluginParentProjectTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/groovy/net/saliman/gradle/plugin/properties/PropertiesPluginParentProjectTest.groovy -------------------------------------------------------------------------------- /src/test/java/net/saliman/gradle/plugin/properties/SetEnv.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/java/net/saliman/gradle/plugin/properties/SetEnv.java -------------------------------------------------------------------------------- /src/test/resources/child-env-local-sub.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/resources/child-env-local-sub.properties -------------------------------------------------------------------------------- /src/test/resources/child-env-local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/resources/child-env-local.properties -------------------------------------------------------------------------------- /src/test/resources/child-env-test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/resources/child-env-test.properties -------------------------------------------------------------------------------- /src/test/resources/child-project-gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/resources/child-project-gradle.properties -------------------------------------------------------------------------------- /src/test/resources/home-gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/resources/home-gradle.properties -------------------------------------------------------------------------------- /src/test/resources/parent-env-local-sub.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/resources/parent-env-local-sub.properties -------------------------------------------------------------------------------- /src/test/resources/parent-env-local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/resources/parent-env-local.properties -------------------------------------------------------------------------------- /src/test/resources/parent-env-test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/resources/parent-env-test.properties -------------------------------------------------------------------------------- /src/test/resources/parent-project-gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/resources/parent-project-gradle.properties -------------------------------------------------------------------------------- /src/test/resources/user-gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesaliman/gradle-properties-plugin/HEAD/src/test/resources/user-gradle.properties --------------------------------------------------------------------------------