Skip to content

Commit

Permalink
Add newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
pstreef committed Jun 21, 2024
1 parent 68cd05b commit 3b3df57
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,27 +38,35 @@ public MavenMetadataFailures(Recipe recipe) {

@Value
public static class Row {

@Column(displayName = "Group id",
description = "The groupId of the artifact for which the metadata download failed.")
String group;

@Column(displayName = "Artifact id",
description = "The artifactId of the artifact for which the metadata download failed.")
String artifactId;

@Column(displayName = "Version",
description = "The version of the artifact for which the metadata download failed.")
String version;

@Column(displayName = "Maven repository",
description = "The URL of the Maven repository that the metadata download failed on.")
String mavenRepositoryUri;

@Column(displayName = "Snapshots",
description = "Does the repository support snapshots.")
String snapshots;

@Column(displayName = "Releases",
description = "Does the repository support releases.")
String releases;

@Column(displayName = "Failure",
description = "The reason the metadata download failed.")
String failure;

}

public interface MavenMetadataDownloader {
Expand Down

0 comments on commit 3b3df57

Please sign in to comment.