ern:tldr:18b91
The command ern publish-container is being used to publish a container for the given Electrode Native platform.
Here is the breakdown of the command:
-
--publisher ${maven}: The--publisherflag specifies the publisher to be used for publishing the container. In this case,${maven}is a variable that holds the Maven publisher configuration. -
--platform ${android}: The--platformflag specifies the platform for which the container is being published. In this case,${android}is a variable that holds the Android platform configuration. -
--extra ${'{"groupId":"com-walmart-ern","artifactId":"quickstart"}'}: The--extraflag allows passing additional configurations to the container publisher. In this case,${'{"groupId":"com-walmart-ern","artifactId":"quickstart"}'}is a variable that holds a JSON object specifying thegroupIdandartifactIdof the container.
This command is used to publish a container for the Android platform with the specified Maven publisher configuration. The --extra flag allows passing any additional configurations required for the container.