[aether] Add commons-codec dependency to aether resolver

Fix NCDF during authorization process for org.apache.commons.codec.binary.Base64

GitOrigin-RevId: c23dd0ce7c6a9dbb5ad43c68446d73796780415a
This commit is contained in:
Nikolay Rykunov
2021-07-29 13:18:51 +03:00
committed by intellij-monorepo-bot
parent 7b98af7d2c
commit 976fddb348
2 changed files with 3 additions and 1 deletions

View File

@@ -71,5 +71,6 @@
</orderEntry>
<orderEntry type="library" name="commons-lang3" level="project" />
<orderEntry type="library" name="plexus-utils" level="project" />
<orderEntry type="library" name="commons-codec" level="project" />
</component>
</module>

View File

@@ -228,7 +228,8 @@ public final class ArtifactRepositoryManager {
org.apache.http.HttpConnection.class, //httpcore
org.apache.http.client.HttpClient.class, //httpclient
org.apache.commons.logging.LogFactory.class, // commons-logging
org.slf4j.Marker.class // slf4j
org.slf4j.Marker.class, // slf4j
org.apache.commons.codec.binary.Base64.class // commons-codec
);
}