Skip to content
This repository was archived by the owner on May 3, 2025. It is now read-only.

Commit 01e87d4

Browse files
committed
com.gradle.plugin-publish 1.0.0-rc-1
1 parent c77db12 commit 01e87d4

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

build.gradle.kts

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ buildscript {
99
plugins {
1010
kotlin("jvm") version "1.5.31"
1111
id("java-gradle-plugin")
12+
id("maven-publish")
1213
id("com.github.ben-manes.versions") version "0.42.0"
1314
id("io.gitlab.arturbosch.detekt") version "1.20.0"
14-
id("com.gradle.plugin-publish") version "0.18.0"
15+
id("com.gradle.plugin-publish") version "1.0.0-rc-1"
1516
}
1617

1718
group = "com.cherryperry.gfe"
@@ -34,16 +35,19 @@ detekt {
3435
baseline = file("detekt-baseline.xml")
3536
}
3637

38+
gradlePlugin {
39+
plugins.register("gradleFileEncryptPlugin") {
40+
id = "com.cherryperry.gradle-file-encrypt"
41+
displayName = "Gradle file encrypt"
42+
description = "Simply encrypt your sensitive data in repository with password"
43+
implementationClass = "com.cherryperry.gfe.FileEncryptPlugin"
44+
}
45+
}
46+
3747
pluginBundle {
3848
website = "https://github.com/CherryPerry/GradleFileEncrypt"
3949
vcsUrl = "https://github.com/CherryPerry/GradleFileEncrypt.git"
40-
description = "Simply encrypt your sensitive data in repository with password"
4150
tags = listOf("encryption", "cryptography")
42-
43-
plugins.create("gradleFileEncryptPlugin") {
44-
id = "com.cherryperry.gradle-file-encrypt"
45-
displayName = "Gradle file encrypt"
46-
}
4751
}
4852

4953
repositories {

src/main/resources/META-INF/gradle-plugins/com.cherryperry.gradle-file-encrypt.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)