Skip to content

Commit

Permalink
add description
Browse files Browse the repository at this point in the history
  • Loading branch information
hboutemy committed Dec 7, 2024
1 parent 4a167d7 commit cc8a711
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions services/reproducible-central/reproducible-central.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ const schema = Joi.object()
.pattern(Joi.string(), Joi.string().regex(/^\d+\/\d+$|^[X?]$/))
.required()

const description = `
[Reproducible Central](https://github.com/jvm-repo-rebuild/reproducible-central)
provides [Reproducible Builds](https://reproducible-builds.org/) check status
for projects published to Maven Central.
`

export default class ReproducibleCentral extends BaseJsonService {
static category = 'dependencies'

Expand All @@ -17,6 +23,7 @@ export default class ReproducibleCentral extends BaseJsonService {
'/reproducible-central/artifact/{groupId}/{artifactId}/{version}': {
get: {
summary: 'Reproducible Central Artifact',
description,
parameters: pathParams(
{
name: 'groupId',
Expand Down

0 comments on commit cc8a711

Please sign in to comment.