Skip to content

Commit eefb0b6

Browse files
committed
update plugins
1 parent 8b9f715 commit eefb0b6

1 file changed

Lines changed: 8 additions & 15 deletions

File tree

build.gradle

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
plugins {
22
id 'signing'
3-
id 'com.gradle.plugin-publish' version '1.1.0'
4-
id 'org.unbroken-dome.test-sets' version '4.0.0'
3+
id 'com.gradle.plugin-publish' version '1.2.0'
54
id "com.github.ben-manes.versions" version "0.46.0"
6-
id 'io.github.gradle-nexus.publish-plugin' version '1.1.0'
5+
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0'
76
}
87

98
group projectGroupId
@@ -48,10 +47,6 @@ java {
4847
}
4948
}
5049

51-
compileJava {
52-
options.release = 8
53-
}
54-
5550
testing {
5651
suites {
5752
test {
@@ -63,7 +58,7 @@ testing {
6358
testType = TestSuiteType.INTEGRATION_TEST
6459

6560
dependencies {
66-
implementation project
61+
implementation(project())
6762
}
6863

6964
sources {
@@ -73,7 +68,7 @@ testing {
7368
}
7469

7570
targets {
76-
all {
71+
configureEach {
7772
testTask.configure {
7873
shouldRunAfter(test)
7974
}
@@ -107,18 +102,16 @@ dependencies {
107102
}
108103

109104
gradlePlugin {
105+
website = 'https://github.com/openapi-processor/openapi-processor-gradle'
106+
vcsUrl = 'https://github.com/openapi-processor/openapi-processor-gradle'
107+
110108
plugins {
111109
processorPlugin {
112110
id = 'io.openapiprocessor.openapi-processor'
113111
displayName = 'Gradle openapi-processor plugin'
114112
description = 'plugin to run openapi-processor-*, e.g. openapi-processor-spring (requires gradle 7.0+, with gradle 5.5+ use 2021.3)'
113+
tags.set(['openapi', 'openapi-processor'])
115114
implementationClass = 'io.openapiprocessor.gradle.OpenApiProcessorPlugin'
116115
}
117116
}
118117
}
119-
120-
pluginBundle {
121-
website = 'https://github.com/openapi-processor/openapi-processor-gradle'
122-
vcsUrl = 'https://github.com/openapi-processor/openapi-processor-gradle'
123-
tags = ['openapi', 'openapi-processor']
124-
}

0 commit comments

Comments
 (0)