0
JFrog Artifactoryに通常のユーザー名とログインを使用するのとは異なり、私の会社はOktaを使用して、他のすべてのもの(JIRA、AWS、Gmailなど)に1つのユーザー名&パスワードでログインさせます。私の会社がOktaを使用してArtifactoryを認証する場合、settings.xmlに暗号化されたパスワードを入力するにはどうすればよいですか?
Artifactoryにログインすると、these instructionsからMaven settings.xmlが作成されました。それで、次のようなものが得られました:
<?xml version="1.0" encoding="UTF-8"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<servers>
<server>
<username>[email protected]</username>
<password>*** Insert encrypted password here ***</password>
<id>central</id>
</server>
<server>
<username>[email protected]</username>
<password>*** Insert encrypted password here ***</password>
<id>snapshots</id>
</server>
</servers>
...
*** Insert encrypted password here ***
とは何ですか?