Skip to content

Commit

Permalink
Refactor: pluginManagement
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahoo-Wang committed Feb 3, 2023
1 parent 679ed33 commit f41137d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformJvmPlugin

plugins {
id("io.github.gradle-nexus.publish-plugin")
id("io.gitlab.arturbosch.detekt").version("1.22.0")
kotlin("jvm") version "1.8.10"
id("org.jetbrains.dokka") version "1.7.20"
id("io.gitlab.arturbosch.detekt")
kotlin("jvm")
id("org.jetbrains.dokka")
id("me.champeau.jmh")
jacoco
}
Expand Down
4 changes: 2 additions & 2 deletions cosec-gateway-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

plugins {
application
kotlin("jvm") version "1.8.10"
kotlin("plugin.spring") version "1.8.10"
kotlin("jvm")
kotlin("plugin.spring")
kotlin("kapt")
}

Expand Down
2 changes: 1 addition & 1 deletion cosec-spring-boot-starter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* limitations under the License.
*/
plugins {
kotlin("plugin.spring") version "1.8.10"
kotlin("plugin.spring")
kotlin("kapt")
}
java {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# limitations under the License.
#
group=me.ahoo.cosec
version=1.10.5
version=1.10.6
description=RBAC-based And Policy-based Multi-Tenant Reactive Security Framework
website=https://github.com/Ahoo-Wang/CoSec
issues=https://github.com/Ahoo-Wang/CoSec/issues
Expand Down
15 changes: 8 additions & 7 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@ include(":cosec-gateway-server")
include(":cosec-opentelemetry")
include(":cosec-ip2region")

buildscript {
repositories {
gradlePluginPortal()
}
dependencies {
classpath("me.champeau.jmh:jmh-gradle-plugin:0.6.8")
classpath("io.github.gradle-nexus:publish-plugin:1.1.0")
pluginManagement {
plugins {
id("io.gitlab.arturbosch.detekt") version "1.22.0" apply false
kotlin("jvm") version "1.8.10" apply false
kotlin("plugin.spring") version "1.8.10" apply false
id("org.jetbrains.dokka") version "1.7.20" apply false
id("me.champeau.jmh") version "0.6.8" apply false
id("io.github.gradle-nexus.publish-plugin") version "1.1.0" apply false
}
}

0 comments on commit f41137d

Please sign in to comment.