Skip to content

Commit

Permalink
Add missing metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
tiulpin committed Apr 16, 2024
1 parent 61dea34 commit 7fcea34
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
2 changes: 1 addition & 1 deletion qodana.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: "1.0"
linter: jetbrains/qodana-jvm:2023.2
projectJDK: 1.8
projectJDK: "1.8"
profile:
name: qodana.recommended
include:
Expand Down
28 changes: 26 additions & 2 deletions sarif/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,36 @@ publishing {
from(components["java"])

pom {
developers {
url.set("https://github.com/JetBrains/qodana-sarif")

licenses {
license {
name.set("Apache-2.0")
url.set("https://github.com/JetBrains/qodana-sarif/blob/main/LICENSE")
}
}

developers { // https://github.com/JetBrains/qodana-sarif/graphs/contributors
developer {
id.set("alexeyAfanasiev")
id.set("avafanasiev")
name.set("Alexey Afanasiev")
email.set("Alexey.Afanasiev@jetbrains.com")
}
developer {
id.set("hybloid")
name.set("Dmitry Golovinov")
email.set("Dmitry.Golovinov@jetbrains.com")
}
developer {
id.set("jckoenen")
name.set("Johannes Koenen")
email.set("Johannes.Koenen@jetbrains.com")
}
developer {
id.set("tiulpin")
name.set("Viktor Tiulpin")
email.set("Viktor.Tiulpin@jetbrains.com")
}
}
}
}
Expand Down

0 comments on commit 7fcea34

Please sign in to comment.