This repository was archived by the owner on May 3, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-8
lines changed
src/main/resources/META-INF/gradle-plugins Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,10 @@ buildscript {
99plugins {
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
1718group = " 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+
3747pluginBundle {
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
4953repositories {
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments