例如,AWS CodeArtifact 使用有效期为 12 小时的令牌进行身份验证。使用 CodeArtifact 的 maven 的典型设置是:
<servers>
<server>
<id>my-domain--my-repo</id>
<username>aws</username>
<password>${env.CODEARTIFACT_AUTH_TOKEN}</password>
</server>
</servers>
在 settings.xml 并执行
export CODEARTIFACT_AUTH_TOKEN=$(aws codeartifact get-authorization-token --domain my-domain --domain-owner 123456789012 --query authorizationToken --output text)
在调用 mvn 之前每 12 小时在终端中。
我以为我可以:
<servers>
<server>
<id>swifttech--main</id>
<username>aws</username>
<password>${codeartifact.auth.token}</password>
</server>
</servers>
在 settings.xml 中,然后有一个
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<providerSelection>2.0</providerSelection>
<properties>
<script>aws codeartifact get-authorization-token --domain my-domain --domain-owner 123456789012 --query authorizationToken --output text</script>
</properties>
<source>
def command = project.properties.script
def process = command.execute()
process.waitFor()
def token = process.in.text.trim()
project.properties.setProperty('codeartifact.auth.token', token)
</source>
</configuration>
</execution>
</executions>
</plugin>
pom.xml 中的部分以自动检索 CodeArtifact 令牌。
除了它没有用。我想知道我的想法是否完全有效,而不起作用的只是实施缺陷。还是不可能用 maven 实现这种自动化。