SYNTAX mfpdev adapter push [[ [ ][--password | -p] ] [--xml|-x]] [--configFile | -c] DESCRIPTION Push the configuration for an adapter to the MobileFirst Server. You must run this command from an adapter directory, which was created and given the name of your adapter when you created an adapter. Note: The default configuration file is the config.json file at the root of your adapter project, but you can specify a different location and filename by using the --configFile flag. Prerequisite: Maven must be installed and the 'mvn' command must be in the system path. Follow the instructions on the Apache Maven web site to download and install Maven. OPTIONS : Name of the server profile for the MobileFirst Server that the configuration is being pushed to. For a list of defined servers, run 'mfpdev server info'. Define new servers by running 'mfpdev server add'. Runtime that you want to push the configuration to. If not specified, the server's default runtime is used. [--password|-p ]: The password for the administrator login ID (user name) on the specified server. If not specified, you are prompted for the password for all mfpdev server management tasks. [--xml|-x]: Pushes the adapter configuration to the server that is specified in the adapter's pom.xml file. The --xml option and the server name are mutually exclusive. If both a server name and this option are specified, the server specified in the pom.xml file is used. [--configFile | -c]: Specifies the path and name of the configuration file to use if it is different from the config.json in the root folder of the adapter project. EXAMPLES $ mfpdev adapter push Pushes the adapter configuration to the default MobileFirst Server. $ mfpdev adapter push Server1 Pushes the adapter configuration to the MobileFirst Server Server1. $ mfpdev adapter push --configFile /alternate_config.json Pushes the adapter configuration and uses the alternate_config.json file that is in your adapterProject directory.