We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e0eadb commit a5e5b61Copy full SHA for a5e5b61
src/main/java/de/jjohannes/gradle/moduledependencies/tasks/RecommendModuleVersionsReportTask.java
@@ -69,9 +69,15 @@ public void report() {
69
}
70
71
components.all(c -> {
72
- String version = c.getId().getVersion();
73
- if (version.contains("beta") || version.contains("alpha")) {
74
- c.setStatus("milestone");
+ String lcVersion = c.getId().getVersion().toLowerCase();
+ if (lcVersion.contains("alpha")
+ || lcVersion.contains("-b")
75
+ || lcVersion.contains("beta")
76
+ || lcVersion.contains("cr")
77
+ || lcVersion.contains("m")
78
+ || lcVersion.contains("rc")) {
79
+
80
+ c.setStatus("integration");
81
82
});
83
0 commit comments