├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src └── main └── kotlin └── io └── johnsonlee └── buildprops ├── BuildGenerator.kt ├── BuildPropsPlugin.kt └── Project.kt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsonlee/buildprops-gradle-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsonlee/buildprops-gradle-plugin/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsonlee/buildprops-gradle-plugin/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsonlee/buildprops-gradle-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsonlee/buildprops-gradle-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsonlee/buildprops-gradle-plugin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | systemProp.org.gradle.internal.publish.checksums.insecure=true 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsonlee/buildprops-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsonlee/buildprops-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsonlee/buildprops-gradle-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsonlee/buildprops-gradle-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "buildprops-gradle-plugin" 2 | -------------------------------------------------------------------------------- /src/main/kotlin/io/johnsonlee/buildprops/BuildGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsonlee/buildprops-gradle-plugin/HEAD/src/main/kotlin/io/johnsonlee/buildprops/BuildGenerator.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/johnsonlee/buildprops/BuildPropsPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsonlee/buildprops-gradle-plugin/HEAD/src/main/kotlin/io/johnsonlee/buildprops/BuildPropsPlugin.kt -------------------------------------------------------------------------------- /src/main/kotlin/io/johnsonlee/buildprops/Project.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnsonlee/buildprops-gradle-plugin/HEAD/src/main/kotlin/io/johnsonlee/buildprops/Project.kt --------------------------------------------------------------------------------