All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ime.mule-module-global-config.4.0.0-rc.source-code.mule-schema.json Maven / Gradle / Ivy

{
  "title" : "Mule Config",
  "type" : "object",
  "properties" : {
    "maven" : {
      "type" : "object",
      "properties" : {
        "repositories" : {
          "description" : "Map of maven repositories to access for fetching maven artifacts. If not defined and no settings.xml provided with remote repositories, then the mule runtime will work in offline mode",
          "type" : "object",
          "additionalProperties": {
            "type": "object",
            "properties": {
              "url": {
                "description": "URL to access the maven repository",
                "type": "string"
              },
              "username": {
                "description": "Username to access the repository",
                "type": "string"
              },
              "password": {
                "description": "Password to access the repository",
                "type": "string"
              }
            },
            "required" : ["url"]
          }
        },
        "globalSettingsLocation" : {
          "description" : "Location of the maven global settings.xml file. It can be a classpath reference in which case the file can be placed in the MULE_HOME/conf folder or an absolute path to the file. If defined, the repositories and proxies configured on it will be used by the runtime",
          "type" : "string"
        },
        "userSettingsLocation" : {
          "description" : "Location of the maven user settings.xml file. It can be a classpath reference in which case the file can be placed in the MULE_HOME/conf folder or an absolute path to the file. If defined, the repositories and proxies configured on it will be used by the runtime. If a global settings is configured, it will be merged with the user settings",
          "type" : "string"
        },
        "repositoryLocation" : {
          "description" : "Repository location for the mule runtime to use. If not provided it will be the MULE_HOME/repository folder"
        }
      }
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy