Skip to content

Commit baa3e97

Browse files
author
Oleg
committed
Add missing url to pom
1 parent ade683f commit baa3e97

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

build.gradle.kts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff 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

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
kotlin.code.style=official
22
release_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

0 commit comments

Comments
 (0)