- Navigate to the JFROG and choose the Target Repository where you want to deploy and Click on Deploy
- Drag and Drop the JAR File as shown below.
- Enter the Group ID, Artifact ID and Version and click Deploy
This will deploy the artifact.
This BLOG focuses on "hands on approach" around AWS, OCI Oracle Cloud Infrastructure, Dev/Ops, MicroServices, OKTA, Oracle Fusion Middleware, Oracle Service Bus, Oracle AIA, Oracle SOA Suite, Oracle SOA Cloud/Developer Cloud, Oracle Identity Management including OID, OAM, OIM, OSSO, Oracle Big Data, WLST Scripts and Oracle Edifecs B2B Engine for HIPAA/HL7/X12/EDIFACT EDI., Kafka, Spark, Spring Boot, DevOps, AWS, GCP and Oracle Cloud
https://dl.microsoft.com/eclipse
.gitignore
files. You can add these files after your project has been pushed to GitHub.$ git init
$ git add .
# Adds the files in the local repository and stages them for commit. To unstage a file, use 'git reset HEAD YOUR-FILE'.
$ git commit -m "First commit"
# Commits the tracked changes and prepares them to be pushed to a remote repository. To remove this commit and modify the file, use 'git reset --soft HEAD~1' and commit and add the file again.
$ git remote add origin remote repository URL
# Sets the new remote
$ git remote -v
# Verifies the new remote URL
$ git push origin master
# Pushes the changes in your local repository up to the remote repository you specified as th
git clone -b <branch> <remote_repo>
When you do a pull request on a branch, you can continue to work on another branch and make another pull request on this other branch.$ git pull origin {name of the remote branch}
$ git checkout -b [name_of_your_new_branch]
$ git push origin [name_of_your_new_branch]
$ git branch -a
* approval_messages master master_clean
$ git remote add [name_of_your_remote] [name_of_your_new_branch]
$ git push [name_of_your_new_remote] [url]
$ git fetch [name_of_your_remote]
$ git merge [name_of_your_remote]/develop
$ git branch -d [name_of_your_new_branch]
$ git branch -D [name_of_your_new_branch]
$ git push origin :[name_of_your_new_branch]
$ git branch <name_of_your_new_branch>
Both Amazon Bedrock and AWS Rekognition are services provided by AWS, but they cater to different use cases, especially when it comes to ...