diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2019-10-02 20:10:07 +0530 |
---|---|---|
committer | Harsh Shandilya <msfjarvis@gmail.com> | 2019-10-02 20:10:07 +0530 |
commit | 7a80be77328b26b8c8f473ae784e91fa52978843 (patch) | |
tree | 985c93f6caab94c33e411a5aad8137479d7c127f /buildSrc | |
parent | ee3535482a1a54774698544164baf8f3b908368c (diff) |
treewide: Fix typo in license header
While we're here, also clarify we're strictly GPL-3.0 and not automatically
opting into future revisions of the license.
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to 'buildSrc')
-rw-r--r-- | buildSrc/build.gradle.kts | 2 | ||||
-rw-r--r-- | buildSrc/src/main/kotlin/SpotlessConfiguration.kt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 5b66e8ec..24b366c0 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -1,6 +1,6 @@ /* * Copyright © 2014-2019 The Android Password Store Authors. All Rights Reserved. - * SPDX-License-Identifier: GPL-2.0 + * SPDX-License-Identifier: GPL-3.0-only */ plugins { `kotlin-dsl` diff --git a/buildSrc/src/main/kotlin/SpotlessConfiguration.kt b/buildSrc/src/main/kotlin/SpotlessConfiguration.kt index 71cfc558..ff8ce05b 100644 --- a/buildSrc/src/main/kotlin/SpotlessConfiguration.kt +++ b/buildSrc/src/main/kotlin/SpotlessConfiguration.kt @@ -1,6 +1,6 @@ /* * Copyright © 2014-2019 The Android Password Store Authors. All Rights Reserved. - * SPDX-License-Identifier: GPL-2.0 + * SPDX-License-Identifier: GPL-3.0-only */ import com.diffplug.gradle.spotless.SpotlessExtension import com.diffplug.gradle.spotless.SpotlessPlugin @@ -10,7 +10,7 @@ import org.gradle.kotlin.dsl.configure val kotlinLicenseHeader = """/* * Copyright © 2014-2019 The Android Password Store Authors. All Rights Reserved. - * SPDX-License-Identifier: GPL-2.0 + * SPDX-License-Identifier: GPL-3.0-only */ """.trimIndent() |