Skip to content

Commit

Permalink
fix: plugin publish and update dependencies
Browse files Browse the repository at this point in the history
* fix: plugin publish and update dependencies

* chore: remove detekt
  • Loading branch information
cortlepp authored Nov 28, 2023
1 parent a9a1a0b commit 8ea88c7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 645 deletions.
15 changes: 3 additions & 12 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {
`java-gradle-plugin`
groovy

kotlin("jvm") version "1.9.20"
kotlin("jvm") version "1.9.21"

// test coverage
jacoco
Expand All @@ -47,11 +47,8 @@ plugins {
// documentation
id("org.jetbrains.dokka") version "1.9.10"

// code analysis for kotlin
id("io.gitlab.arturbosch.detekt") version "1.18.0"

// plugin for publishing to Gradle Portal
id("com.gradle.plugin-publish") version "1.0.0"
id("com.gradle.plugin-publish") version "1.2.1"
}

scm {
Expand Down Expand Up @@ -122,7 +119,6 @@ gradlePlugin {
}
}
}

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
Expand All @@ -133,11 +129,6 @@ if (project.version.toString().endsWith("-SNAPSHOT")) {
status = "snapshot'"
}

detekt {
source = files("src/main/kotlin")
config = files("detekt.yml")
}

val shaded by configurations.creating
val compileOnly = configurations.getByName("compileOnly")
compileOnly.extendsFrom(shaded)
Expand Down Expand Up @@ -309,7 +300,7 @@ dependencies {

implementation(gradleKotlinDsl())

implementation("org.apache.solr:solr-solrj:8.11.2")
implementation("org.apache.solr:solr-solrj:9.4.0")
implementation("com.bmuschko:gradle-docker-plugin:8.1.0")
implementation("com.intershop.gradle.icm:icm-gradle-plugin:5.8.0")
implementation("com.intershop.gradle.jobrunner:icmjobrunner:1.0.5")
Expand Down
Loading

0 comments on commit 8ea88c7

Please sign in to comment.