Skip to content

Commit

Permalink
Make dependencies field in DependencyManagement nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitavlaevjb committed Jan 11, 2024
1 parent dabcc4d commit b875305
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public data class Exclusion(
namespace = POM_XML_NAMESPACE,
)
public data class DependencyManagement(
public val dependencies: Dependencies
public val dependencies: Dependencies? = null
)

@Serializable
Expand Down

0 comments on commit b875305

Please sign in to comment.