publishing maven repo to s3 assuming I have credentials and an existing bucket. What command do I call in order to run the publishing part of the build. With mavenDeployer I was using gradle uploadArchives
but now I cant figure out how to get this binary to s3. Ive looked all over and nobody is showing the cli command to run it. Just the example setup in build.gradle
Asked
Active
Viewed 114 times
0

Tzvetlin Velev
- 1,897
- 2
- 17
- 31
1 Answers
1
Is doing this in 2 steps an option for you ?
step1 - maven/gradle will build the artifact / binary
step2 - use aws cli (s3) to upload - for e.g. aws s3 cp /tmp/binary s3://bucket/

Manjiri Namjoshi
- 48
- 4