org.mule.weave assertions 1.0.2 test
Monday, June 28, 2021
Anypoint Studio Error: The project is missing Munit lIbrary to run tests
Anypoint Studio 7.9 has a bug. Even if we following the article: https://help.mulesoft.com/s/article/The-project-is-missing-MUnit-libraries-to-run-tests-Mule-4, it still would not fix the proble.
The only solution at the moment is to add the followiing dependency:
Tuesday, February 16, 2021
Access Multiple Github Accounts From One Computer
Step 1: Step 1: Generate SSH and Add it to ssh-agent
Note: if you have two github accounts, you need to generate two SSH Key
Step 2: Configure ~/.ssh/config
Note: In order to access the different account, you must use the hostname specified inside the ~/.ssh/config file. Here is my example:
$ cat .ssh/config Host * ServerAliveInterval 240 # garyliu1119 account Host github1119.com HostName github.com AddKeysToAgent yes IdentityFile ~/.ssh/id_ed25519 IdentitiesOnly yes # garyliu19 account Host github19.com HostName github.com AddKeysToAgent yes IdentityFile ~/.ssh/id_rsa IdentitiesOnly yesWhen I clone the github repo, I use the following command:
git clone -b develop git@github19.com:garyliu19/FN-External-API.gitNote: the domain name is: github19.com, instead of github.com
Subscribe to:
Posts (Atom)
Anypoint Studio Error: The project is missing Munit lIbrary to run tests
Anypoint Studio 7.9 has a bug. Even if we following the article: https://help.mulesoft.com/s/article/The-project-is-missing-MUnit-libraries-...
-
The Challenges I have Accounts retrieved from Salesforce like the following: [ { "LastModifiedDate": "2015-12-...
-
Congratulation Gary! First of all, I must congratulate myself for getting this done. For almost a year, I have been thinking to take the e...
-
Introduction This short article is about how to use regex with Dataweave 2.0 with regard to email validation. Regex is used in Mulesoft lan...