Skip to content

Commit

Permalink
Merge branch 'main' into rh/test-coko
Browse files Browse the repository at this point in the history
  • Loading branch information
CodingDepot authored Jul 3, 2024
2 parents e2bca92 + 6377273 commit 0debf29
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
{
"matchPackagePrefixes": ["com.github.Fraunhofer-AISEC"],
"registryUrls": ["https://jitpack.io/"]
},
{
"groupName": "PMD packages",
"matchPackagePrefixes": ["net.sourceforge.pmd:pmd-"]
}
]
}
6 changes: 3 additions & 3 deletions codyze-plugins/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ dependencies {
*/
// https://mvnrepository.com/artifact/com.github.spotbugs/spotbugs
// it is necessary to exclude saxon because of conflicts with same transitive dependency in PMD
implementation("com.github.spotbugs:spotbugs:4.8.5") {
implementation("com.github.spotbugs:spotbugs:4.8.6") {
exclude(group = "net.sf.saxon", module = "Saxon-HE")
}
implementation("com.h3xstream.findsecbugs:findsecbugs-plugin:1.13.0")

// https://mvnrepository.com/artifact/net.sourceforge.pmd/
implementation("net.sourceforge.pmd:pmd-core:7.2.0")
implementation("net.sourceforge.pmd:pmd-java:7.2.0")
implementation("net.sourceforge.pmd:pmd-core:7.3.0")
implementation("net.sourceforge.pmd:pmd-java:7.3.0")
}

publishing {
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dokka = "1.9.20"

[libraries]
sarif4k = { module = "io.github.detekt.sarif4k:sarif4k", version = "0.6.0"} # The code can be found here: https://github.com/detekt/sarif4k. It was generated using https://app.quicktype.io/
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version = "1.7.0"}
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version = "1.7.1"}
kotlin-reflect = { module = "org.jetbrains.kotlin:kotlin-reflect", version.ref = "kotlin"}

# CPG official releases
Expand Down Expand Up @@ -41,7 +41,7 @@ kotlin-scripting-dependencies = { module = "org.jetbrains.kotlin:kotlin-scriptin
detekt-formatting = { module = "io.gitlab.arturbosch.detekt:detekt-formatting", version.ref = "detekt"}

# test
junit-bom = { module = "org.junit:junit-bom", version = "5.10.2" }
junit-bom = { module = "org.junit:junit-bom", version = "5.10.3" }
mockk = { module = "io.mockk:mockk", version = "1.13.11"}

# this is necessary for the plugins to be used in the buildSrc folder
Expand Down

0 comments on commit 0debf29

Please sign in to comment.