|
13 | 13 | import java.util.Set;
|
14 | 14 | import java.util.stream.Collectors;
|
15 | 15 |
|
16 |
| -import com.devonfw.tools.ide.url.model.folder.UrlVersion; |
17 |
| -import com.devonfw.tools.ide.util.MapUtil; |
18 |
| -import com.devonfw.tools.ide.version.VersionIdentifier; |
19 | 16 | import org.owasp.dependencycheck.Engine;
|
20 | 17 | import org.owasp.dependencycheck.analyzer.AbstractAnalyzer;
|
21 | 18 | import org.owasp.dependencycheck.analyzer.AnalysisPhase;
|
|
54 | 51 | import com.devonfw.tools.ide.context.IdeContextConsole;
|
55 | 52 | import com.devonfw.tools.ide.log.IdeLogLevel;
|
56 | 53 | import com.devonfw.tools.ide.url.model.file.UrlSecurityJsonFile;
|
| 54 | +import com.devonfw.tools.ide.url.model.folder.UrlVersion; |
57 | 55 | import com.devonfw.tools.ide.url.updater.AbstractUrlUpdater;
|
58 | 56 | import com.devonfw.tools.ide.url.updater.UpdateManager;
|
| 57 | +import com.devonfw.tools.ide.util.MapUtil; |
| 58 | +import com.devonfw.tools.ide.version.VersionIdentifier; |
59 | 59 | import com.devonfw.tools.ide.version.VersionRange;
|
60 | 60 |
|
61 | 61 | // TODO Doesn't yet work with versions defined like this /<tool>/<edition>/latest
|
@@ -123,9 +123,6 @@ private static void run() {
|
123 | 123 | String tool = parent.getParent().getParent().getFileName().toString();
|
124 | 124 | String edition = parent.getParent().getFileName().toString();
|
125 | 125 | AbstractUrlUpdater urlUpdater = updateManager.getUrlUpdater(tool);
|
126 |
| - |
127 |
| - System.out.println(tool + ", " + edition); |
128 |
| - |
129 | 126 | UrlSecurityJsonFile securityFile = context.getUrls().getEdition(tool, edition).getSecurityJsonFile();
|
130 | 127 | boolean newlyAdded = foundToolsAndEditions.add(new Pair<>(tool, edition));
|
131 | 128 | if (newlyAdded) { // to assure that the file is cleared only once per tool and edition
|
@@ -272,10 +269,8 @@ private static String getUrlVersion(String cpeVersion, AbstractUrlUpdater urlUpd
|
272 | 269 | if (cpeVersion != null) {
|
273 | 270 | if (cpeToUrlVersion.containsKey(cpeVersion)) {
|
274 | 271 | urlVersion = cpeToUrlVersion.get(cpeVersion);
|
275 |
| - System.out.println("tool mapped using map cpe " + cpeVersion + " -> url " + urlVersion); |
276 | 272 | } else {
|
277 | 273 | urlVersion = urlUpdater.mapCpeVersionToUrlVersion(cpeVersion);
|
278 |
| - System.out.println("tool mapped using mapCpeVersionToUrlVersion cpe " + cpeVersion + " -> url " + urlVersion); |
279 | 274 |
|
280 | 275 | }
|
281 | 276 | }
|
|
0 commit comments