File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ plugins {
88 id(" org.jetbrains.kotlinx.binary-compatibility-validator" ) version " 0.13.2"
99 id(" org.jlleitschuh.gradle.ktlint" ) version " 11.6.0"
1010 id(" io.github.gradle-nexus.publish-plugin" ) version " 1.3.0"
11- id(" org.owasp.dependencycheck" ) version " 8.4.0 "
11+ id(" org.owasp.dependencycheck" ) version " 9.0.9 "
1212 id(" com.gorylenko.gradle-git-properties" ) version " 2.4.1"
1313 id(" com.github.jk1.dependency-license-report" ) version " 2.5"
1414 id(" de.undercouch.download" ) version " 5.4.0"
@@ -92,16 +92,17 @@ publishing {
9292 name.set(project.name)
9393 packaging = " jar"
9494 description.set(project.description)
95- url.set(" " )
95+ val urlProvider = provider { findProperty(" vcs_url" ) as ? String }
96+ url.set(urlProvider)
9697
9798 scm {
98- url.set(" " )
99+ url.set(urlProvider )
99100 }
100101
101102 licenses {
102103 license {
103104 name.set(" The Apache License, Version 2.0" )
104- url.set(" http ://www.apache.org/licenses/LICENSE-2.0.txt" )
105+ url.set(" https ://www.apache.org/licenses/LICENSE-2.0.txt" )
105106 }
106107 }
107108
Original file line number Diff line number Diff line change 11kotlin.code.style =official
22release_version =0.0.1
33
4- description =JUnit Jupiter extension for th2 integration testing
4+ description =JUnit Jupiter extension for th2 integration testing
5+ vcs_url =https://github.com/th2-net/junit-jupiter-integration
You can’t perform that action at this time.
0 commit comments