diff --git a/README.md b/README.md index b5d2674..95c6bc4 100644 --- a/README.md +++ b/README.md @@ -19,14 +19,14 @@ In your app-level `build.gradle` file: Groovy: ```groovy plugins { - id 'com.google.secrets_gradle_plugin' version '0.4' + id 'com.google.secrets_gradle_plugin' version '0.5' } ``` Kotlin: ```groovy plugins { - id("com.google.secrets_gradle_plugin") version "0.4" + id("com.google.secrets_gradle_plugin") version "0.5" } ``` diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index d95fcd5..566ec01 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -72,6 +72,6 @@ object PluginInfo { const val group = "com.google" const val artifactId = "secrets_gradle_plugin" const val name = "secretsGradlePlugin" - const val version = "0.4" + const val version = "0.5" const val implementationClass = "com.google.secrets_gradle_plugin.SecretsPlugin" } \ No newline at end of file diff --git a/plugin/src/main/java/com/google/secrets_gradle_plugin/SecretsPlugin.kt b/plugin/src/main/java/com/google/secrets_gradle_plugin/SecretsPlugin.kt index 18884a6..a21caa9 100644 --- a/plugin/src/main/java/com/google/secrets_gradle_plugin/SecretsPlugin.kt +++ b/plugin/src/main/java/com/google/secrets_gradle_plugin/SecretsPlugin.kt @@ -64,7 +64,6 @@ class SecretsPlugin : Plugin { val buildTypeProperties = try { project.rootProject.loadPropertiesFile(buildTypeFileName) } catch (e: FileNotFoundException) { - println("Could not find $buildTypeFileName") null } buildTypeProperties?.let { @@ -76,7 +75,6 @@ class SecretsPlugin : Plugin { val flavorProperties = try { project.rootProject.loadPropertiesFile(flavorFileName) } catch (e: FileNotFoundException) { - println("Could not find $flavorFileName") null } flavorProperties?.let { diff --git a/sample-app/build.gradle.kts b/sample-app/build.gradle.kts index 39d7175..e0d95d0 100644 --- a/sample-app/build.gradle.kts +++ b/sample-app/build.gradle.kts @@ -17,7 +17,7 @@ plugins { id("kotlin-android") // 1. Include the plugin - id("com.google.secrets_gradle_plugin") version "0.4" + id("com.google.secrets_gradle_plugin") version "0.5" } android {