0.2.7 • Published 8 months ago

ssazama-codeartifact-helper v0.2.7

Weekly downloads
-
License
-
Repository
-
Last release
8 months ago

Usage: replace_crtf_token replacementText

replacementText should be the value of the new CodeArtifact token, once it has been retrieved from AWS. This new token will be substituted in for the value of in USER_HOME/.m2/settings.xml, such that:

replace_crtf_token {new_token}

With settings.xml content:

<settings>
	<servers>
		<server>
			<id>server-id</id>
			<password>{old_token}</password>
		</server>
	</servers>
	
	<codeartifact-token>{old_token}</codeartifact-token>
</settings>

Will result in settings.xml being updated as:

<settings>
	<servers>
		<server>
			<id>server-id</id>
			<password>{new_token}</password>
		</server>
	</servers>
	
	<codeartifact-token>{new_token}</codeartifact-token>
</settings>
0.2.7

8 months ago

0.2.6

8 months ago

0.2.5

8 months ago

0.2.4

8 months ago

0.2.3

8 months ago

0.2.2

8 months ago

0.2.1

8 months ago

0.2.0

8 months ago

0.1.0

8 months ago