17
17
18
18
import io .micrometer .release .common .ProcessRunner ;
19
19
import io .micrometer .release .single .ChangelogSection .Section ;
20
+ import org .slf4j .Logger ;
21
+ import org .slf4j .LoggerFactory ;
20
22
21
- import java .io .*;
23
+ import java .io .BufferedWriter ;
24
+ import java .io .File ;
22
25
import java .nio .file .Files ;
23
26
import java .util .*;
24
27
import java .util .regex .Matcher ;
25
28
import java .util .regex .Pattern ;
26
-
27
- import org .slf4j .Logger ;
28
- import org .slf4j .LoggerFactory ;
29
+ import java .util .stream .Collectors ;
29
30
30
31
class ChangelogProcessor {
31
32
@@ -51,7 +52,8 @@ class ChangelogProcessor {
51
52
}
52
53
53
54
File processChangelog (File changelog , File oldChangelog ) throws Exception {
54
- Set <String > testAndOptional = fetchTestAndOptionalDependencies ();
55
+ Set <Dependency > dependencies = fetchAllDependencies ();
56
+ Set <Dependency > testOrOptional = dependencies .stream ().filter (Dependency ::toIgnore ).collect (Collectors .toSet ());
55
57
56
58
Changelog currentChangelog = Changelog .parse (changelog );
57
59
Changelog oldChangelogContent = oldChangelog != null ? Changelog .parse (oldChangelog ) : new Changelog ();
@@ -64,7 +66,10 @@ File processChangelog(File changelog, File oldChangelog) throws Exception {
64
66
65
67
// Process dependencies section specially
66
68
ChangelogSection depsSection = currentChangelog .getSection (Section .UPGRADES );
67
- Collection <String > processedDeps = processDependencyUpgrades (depsSection .getEntries (), testAndOptional );
69
+ Collection <String > processedDeps = processDependencyUpgrades (depsSection .getEntries (),
70
+ testOrOptional .stream ()
71
+ .map (dependency -> dependency .group () + ":" + dependency .artifact ())
72
+ .collect (Collectors .toSet ()));
68
73
depsSection .clear ();
69
74
processedDeps .forEach (depsSection ::addEntry );
70
75
@@ -90,7 +95,7 @@ File processChangelog(File changelog, File oldChangelog) throws Exception {
90
95
return outputFile ;
91
96
}
92
97
93
- private Set <String > fetchTestAndOptionalDependencies () {
98
+ private Set <Dependency > fetchAllDependencies () {
94
99
log .info ("Fetching test and optional dependencies..." );
95
100
List <String > projectLines = projectLines ();
96
101
List <String > subprojects = projectLines .stream ()
@@ -100,8 +105,7 @@ private Set<String> fetchTestAndOptionalDependencies() {
100
105
101
106
log .info ("Subprojects: {}" , subprojects );
102
107
103
- Set <String > testOptionalDependencies = new HashSet <>();
104
- Set <String > implementationDependencies = new HashSet <>();
108
+ Set <Dependency > dependencies = new HashSet <>();
105
109
106
110
if (!subprojects .isEmpty ()) {
107
111
List <String > gradleCommand = new ArrayList <>();
@@ -112,13 +116,22 @@ private Set<String> fetchTestAndOptionalDependencies() {
112
116
for (String line : dependenciesLines (gradleCommand )) {
113
117
if (line .startsWith ("+---" ) || line .startsWith ("\\ ---" )) {
114
118
String [] parts = line .split ("[: ]" );
115
- String dependency = parts [1 ] + ":" + parts [2 ];
116
- if (testOrOptional ) {
117
- testOptionalDependencies .add (dependency );
118
- }
119
- else {
120
- implementationDependencies .add (dependency );
121
- }
119
+ String version = extractVersion (line );
120
+ boolean finalTestOrOptional = testOrOptional ;
121
+ dependencies .stream ()
122
+ .filter (dependency -> dependency .group ().equalsIgnoreCase (parts [1 ])
123
+ && dependency .artifact ().equalsIgnoreCase (parts [2 ]))
124
+ .findFirst ()
125
+ .ifPresentOrElse (dependency -> {
126
+ log .debug ("Dependency {} is already present in compile scope" , parts [1 ] + ":" + parts [2 ]);
127
+ if (dependency .toIgnore () && !finalTestOrOptional ) {
128
+ log .debug (
129
+ "Dependency {} was previously set in test or compile scope and will be in favour of one in compile scope" ,
130
+ dependency );
131
+ dependencies .remove (dependency );
132
+ dependencies .add (new Dependency (parts [1 ], parts [2 ], version , finalTestOrOptional ));
133
+ }
134
+ }, () -> dependencies .add (new Dependency (parts [1 ], parts [2 ], version , finalTestOrOptional )));
122
135
}
123
136
else if (excludedDependencyScopes .stream ()
124
137
.anyMatch (string -> line .toLowerCase ().contains (string .toLowerCase ()))) {
@@ -128,12 +141,30 @@ else if (line.isEmpty() || line.isBlank()) {
128
141
testOrOptional = false ;
129
142
}
130
143
}
131
-
132
- testOptionalDependencies .removeAll (implementationDependencies );
133
- log .info ("Excluded dependencies: {}" , testOptionalDependencies );
134
144
}
135
145
136
- return testOptionalDependencies ;
146
+ return dependencies ;
147
+ }
148
+
149
+ static String extractVersion (String line ) {
150
+ if (line == null || line .trim ().isEmpty ()) {
151
+ return null ;
152
+ }
153
+ if (line .contains ("->" )) {
154
+ String [] parts = line .split ("->" );
155
+ if (parts .length > 1 ) {
156
+ return parts [1 ].trim ().split ("\\ s+" )[0 ];
157
+ }
158
+ return null ;
159
+ }
160
+ String [] parts = line .split (":" );
161
+ if (parts .length < 2 ) {
162
+ return null ;
163
+ }
164
+ if (parts .length >= 3 ) {
165
+ return parts [2 ].trim ().split ("\\ s+" )[0 ];
166
+ }
167
+ return null ;
137
168
}
138
169
139
170
List <String > dependenciesLines (List <String > gradleCommand ) {
0 commit comments