├── .gitignore ├── LICENSE ├── README.md ├── pom.xml ├── samples ├── CommonProxy │ └── apiproxy │ │ ├── CommonProxy.xml │ │ ├── policies │ │ ├── assign_handle_cookies_accept.xml │ │ ├── assign_set_variables.xml │ │ ├── fault_accept_json_not_found.xml │ │ ├── fault_invalid_secret.xml │ │ ├── js_setup_splunk_vars.xml │ │ ├── quota_rate_limit.xml │ │ ├── rate_limit.xml │ │ ├── service_callout_kms.xml │ │ ├── spike_arrest_by_clientid.xml │ │ └── verify_apikey_clientid.xml │ │ ├── proxies │ │ ├── common_cid_request_steps.flowfrag │ │ ├── common_logging_post_flow_steps.flowfrag │ │ ├── common_oauth_fault.flowfrag │ │ ├── default.xml │ │ ├── spike_arrest_and_quota.flowfrag │ │ └── xmltojson.flowfrag │ │ ├── resources │ │ └── jsc │ │ │ └── js_setup_splunk_vars.js │ │ └── targets │ │ └── default.xml ├── README.md ├── api-bundles-recommended │ ├── .gitignore │ └── src │ │ └── gateway │ │ ├── CommonProxy │ │ └── apiproxy │ │ │ ├── policies │ │ │ ├── Script-External-Variables.xml │ │ │ └── xmltojson-1.xml │ │ │ ├── proxies │ │ │ ├── common-js-vars.flowfrag │ │ │ └── xmltojson.flowfrag │ │ │ └── resources │ │ │ └── jsc │ │ │ └── js_external_vars.js │ │ ├── forecastweatherapi │ │ ├── apiproxy │ │ │ ├── forecastweatherapi.xml │ │ │ ├── policies │ │ │ │ ├── Assign-Message-1.xml │ │ │ │ └── xmltojson-1.1.xml │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ └── targets │ │ │ │ └── default.xml │ │ ├── config.json │ │ ├── pom.xml │ │ ├── temp │ │ │ └── apiproxy │ │ │ │ ├── forecastweatherapi.xml │ │ │ │ ├── policies │ │ │ │ ├── Assign-Message-1.xml │ │ │ │ ├── xmltojson-1.1.xml │ │ │ │ └── xmltojson-1.xml │ │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ │ └── targets │ │ │ │ └── default.xml │ │ └── tests │ │ │ ├── .gitignore │ │ │ ├── weather.jmx │ │ │ ├── weather_prod.csv │ │ │ └── weather_test.csv │ │ └── shared-pom.xml ├── deploy.sh ├── forcastweatherapi │ ├── apiproxy │ │ ├── forcastweatherapi.xml │ │ ├── policies │ │ │ └── service_callout_check.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── pom.xml │ └── tests │ │ ├── weather.jmx │ │ ├── weather_prod.csv │ │ └── weather_test.csv └── parent-pom │ └── pom.xml └── src ├── main └── java │ └── io │ └── apigee │ └── buildTools │ └── enterprise4g │ └── dep │ ├── DependencyResolverMojo.java │ ├── ProxyRefProcessor.java │ ├── flowfrag │ ├── FlowFragment.java │ └── FlowFragmentProcessor.java │ └── policy │ ├── Policy.java │ ├── PolicyDependencyProcessor.java │ └── resources │ ├── CommonResourceProcessor.java │ └── ResourceProcessor.java └── test ├── java └── org │ └── sriki │ └── osx │ └── keychain │ └── DependencyResolverMojoTest.java └── resources ├── Proxy └── apiproxy │ ├── policies │ ├── assign_add_qp_request.xml │ ├── assign_build_get_token_response.xml │ ├── assign_build_json_response.xml │ ├── assign_build_xml_response.xml │ ├── assign_handle_cookies_accept.xml │ ├── assign_refresh_token_json_response.xml │ ├── assign_set_local_form_variables.xml │ ├── assign_set_local_header_variables.xml │ ├── assign_set_local_query_variables.xml │ ├── assign_set_user_create_target.xml │ ├── assign_set_user_login_target.xml │ ├── assign_transform_request.xml │ ├── extract_refresh_token_params.xml │ ├── extract_user_data.xml │ ├── extract_user_res_data.xml │ ├── fault_accept_json_not_found.xml │ ├── fault_invalid_secret.xml │ ├── fault_user_creation.xml │ ├── js_prevent_req_path_copy.xml │ ├── js_set_oauth_cred.xml │ ├── keymap_get_token_link.xml │ ├── keymap_upd_token_link.xml │ ├── oauthv2_gen_accesstoken.xml │ ├── oauthv2_refresh_accesstoken.xml │ └── service_callout_check.xml │ ├── proxies │ ├── common_oauth_fault.flowfrag │ ├── getAccessToken.xml │ └── resources │ │ └── common_oauth_fault.flowfrag │ ├── resources │ ├── common_oauth_fault.flowfrag │ └── jsc │ │ ├── crypto_js │ │ ├── core-min.js │ │ └── enc-base64-min.js │ │ ├── js_conv_age_to_dob.js │ │ ├── js_prevent_req_path_copy.js │ │ ├── js_set_oauth_cred.js │ │ └── js_set_user_attrs.js │ └── targets │ └── oauth_client.xml ├── ProxyRef └── apiproxy │ ├── CommonProxy.xml │ ├── policies │ ├── assign_4g_client_secret.xml │ ├── assign_alter_queryparams_headers.xml │ ├── assign_copy_request_to_response.xml │ ├── assign_init_variables.xml │ ├── assign_remove_x_forward_headers.xml │ ├── assign_set_kms_auth.xml │ ├── assign_set_local_client_id.xml │ ├── assign_set_variables.xml │ ├── assign_to_route_google.xml │ ├── extract_access_token.xml │ ├── extract_kms_token.xml │ ├── fault_appId_not_found.xml │ ├── fault_invalid_secret.xml │ ├── fault_validation_callout_failure.xml │ ├── java_transform.xml │ ├── js_add_trusted_headers.xml │ ├── js_check_accesstoken.xml │ ├── js_setkeyandauth.xml │ ├── js_setup_splunk_vars.xml │ ├── js_target_endpoint_modification.xml │ ├── keymap_get_cred.xml │ ├── keymap_get_kmscredentials.xml │ ├── log_splunk.xml │ ├── oauthv2_gen_ext_accesstoken.xml │ ├── oauthv2_token_get_attr.xml │ ├── oauthv2_verify_accesstoken.xml │ ├── py_createURL.xml │ ├── quota_rate_limit.xml │ ├── rate_limit.xml │ ├── service_callout_kms.xml │ ├── spike_arrest_by_clientid.xml │ ├── verify_apikey_clientid.xml │ └── xsl_transform_geocode.xml │ ├── proxies │ ├── common_logging_post_flow_steps.flowfrag │ ├── common_oauth_fault.flowfrag │ ├── common_target_request_flow_steps.flowfrag │ ├── debug_and_test.flowfrag │ ├── default.xml │ └── spike_arrest_and_quota.flowfrag │ ├── resources │ ├── java │ │ └── xslt.jar │ ├── jsc │ │ ├── crypto_js │ │ │ ├── core-min.js │ │ │ ├── enc-base64-min.js │ │ │ ├── enc-utf16-min.js │ │ │ ├── sha512-min.js │ │ │ └── x64-core-min.js │ │ ├── js_add_trusted_headers.js │ │ ├── js_check_accesstoken.js │ │ ├── js_setkeyandauth.js │ │ ├── js_setup_splunk_vars.js │ │ ├── js_target_endpoint_modification.js │ │ └── moment_js │ │ │ └── moment.min.js │ ├── py │ │ └── createURL.py │ └── xsl │ │ └── transform_geocode.xsl │ └── targets │ └── default.xml └── test-pom.xml /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .idea 3 | *.iml 4 | dependency-reduced-pom.xml 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/CommonProxy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/CommonProxy.xml -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/policies/assign_handle_cookies_accept.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/policies/assign_handle_cookies_accept.xml -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/policies/assign_set_variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/policies/assign_set_variables.xml -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/policies/fault_accept_json_not_found.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/policies/fault_accept_json_not_found.xml -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/policies/fault_invalid_secret.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/policies/fault_invalid_secret.xml -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/policies/js_setup_splunk_vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/policies/js_setup_splunk_vars.xml -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/policies/quota_rate_limit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/policies/quota_rate_limit.xml -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/policies/rate_limit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/policies/rate_limit.xml -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/policies/service_callout_kms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/policies/service_callout_kms.xml -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/policies/spike_arrest_by_clientid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/policies/spike_arrest_by_clientid.xml -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/policies/verify_apikey_clientid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/policies/verify_apikey_clientid.xml -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/proxies/common_cid_request_steps.flowfrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/proxies/common_cid_request_steps.flowfrag -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/proxies/common_logging_post_flow_steps.flowfrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/proxies/common_logging_post_flow_steps.flowfrag -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/proxies/common_oauth_fault.flowfrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/proxies/common_oauth_fault.flowfrag -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/proxies/spike_arrest_and_quota.flowfrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/proxies/spike_arrest_and_quota.flowfrag -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/proxies/xmltojson.flowfrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/proxies/xmltojson.flowfrag -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/resources/jsc/js_setup_splunk_vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/resources/jsc/js_setup_splunk_vars.js -------------------------------------------------------------------------------- /samples/CommonProxy/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/CommonProxy/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/api-bundles-recommended/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/.gitignore -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/CommonProxy/apiproxy/policies/Script-External-Variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/CommonProxy/apiproxy/policies/Script-External-Variables.xml -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/CommonProxy/apiproxy/policies/xmltojson-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/CommonProxy/apiproxy/policies/xmltojson-1.xml -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/CommonProxy/apiproxy/proxies/common-js-vars.flowfrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/CommonProxy/apiproxy/proxies/common-js-vars.flowfrag -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/CommonProxy/apiproxy/proxies/xmltojson.flowfrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/CommonProxy/apiproxy/proxies/xmltojson.flowfrag -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/CommonProxy/apiproxy/resources/jsc/js_external_vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/CommonProxy/apiproxy/resources/jsc/js_external_vars.js -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/apiproxy/forecastweatherapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/apiproxy/forecastweatherapi.xml -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/apiproxy/policies/Assign-Message-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/apiproxy/policies/Assign-Message-1.xml -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/apiproxy/policies/xmltojson-1.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/apiproxy/policies/xmltojson-1.1.xml -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/config.json -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/pom.xml -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/temp/apiproxy/forecastweatherapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/temp/apiproxy/forecastweatherapi.xml -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/temp/apiproxy/policies/Assign-Message-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/temp/apiproxy/policies/Assign-Message-1.xml -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/temp/apiproxy/policies/xmltojson-1.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/temp/apiproxy/policies/xmltojson-1.1.xml -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/temp/apiproxy/policies/xmltojson-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/temp/apiproxy/policies/xmltojson-1.xml -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/temp/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/temp/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/temp/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/temp/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/tests/.gitignore: -------------------------------------------------------------------------------- 1 | /jmeter.log 2 | -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/tests/weather.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/tests/weather.jmx -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/tests/weather_prod.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/tests/weather_prod.csv -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/forecastweatherapi/tests/weather_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/forecastweatherapi/tests/weather_test.csv -------------------------------------------------------------------------------- /samples/api-bundles-recommended/src/gateway/shared-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/api-bundles-recommended/src/gateway/shared-pom.xml -------------------------------------------------------------------------------- /samples/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/deploy.sh -------------------------------------------------------------------------------- /samples/forcastweatherapi/apiproxy/forcastweatherapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/forcastweatherapi/apiproxy/forcastweatherapi.xml -------------------------------------------------------------------------------- /samples/forcastweatherapi/apiproxy/policies/service_callout_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/forcastweatherapi/apiproxy/policies/service_callout_check.xml -------------------------------------------------------------------------------- /samples/forcastweatherapi/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/forcastweatherapi/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /samples/forcastweatherapi/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/forcastweatherapi/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /samples/forcastweatherapi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/forcastweatherapi/pom.xml -------------------------------------------------------------------------------- /samples/forcastweatherapi/tests/weather.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/forcastweatherapi/tests/weather.jmx -------------------------------------------------------------------------------- /samples/forcastweatherapi/tests/weather_prod.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/forcastweatherapi/tests/weather_prod.csv -------------------------------------------------------------------------------- /samples/forcastweatherapi/tests/weather_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/forcastweatherapi/tests/weather_test.csv -------------------------------------------------------------------------------- /samples/parent-pom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/samples/parent-pom/pom.xml -------------------------------------------------------------------------------- /src/main/java/io/apigee/buildTools/enterprise4g/dep/DependencyResolverMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/main/java/io/apigee/buildTools/enterprise4g/dep/DependencyResolverMojo.java -------------------------------------------------------------------------------- /src/main/java/io/apigee/buildTools/enterprise4g/dep/ProxyRefProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/main/java/io/apigee/buildTools/enterprise4g/dep/ProxyRefProcessor.java -------------------------------------------------------------------------------- /src/main/java/io/apigee/buildTools/enterprise4g/dep/flowfrag/FlowFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/main/java/io/apigee/buildTools/enterprise4g/dep/flowfrag/FlowFragment.java -------------------------------------------------------------------------------- /src/main/java/io/apigee/buildTools/enterprise4g/dep/flowfrag/FlowFragmentProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/main/java/io/apigee/buildTools/enterprise4g/dep/flowfrag/FlowFragmentProcessor.java -------------------------------------------------------------------------------- /src/main/java/io/apigee/buildTools/enterprise4g/dep/policy/Policy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/main/java/io/apigee/buildTools/enterprise4g/dep/policy/Policy.java -------------------------------------------------------------------------------- /src/main/java/io/apigee/buildTools/enterprise4g/dep/policy/PolicyDependencyProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/main/java/io/apigee/buildTools/enterprise4g/dep/policy/PolicyDependencyProcessor.java -------------------------------------------------------------------------------- /src/main/java/io/apigee/buildTools/enterprise4g/dep/policy/resources/CommonResourceProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/main/java/io/apigee/buildTools/enterprise4g/dep/policy/resources/CommonResourceProcessor.java -------------------------------------------------------------------------------- /src/main/java/io/apigee/buildTools/enterprise4g/dep/policy/resources/ResourceProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/main/java/io/apigee/buildTools/enterprise4g/dep/policy/resources/ResourceProcessor.java -------------------------------------------------------------------------------- /src/test/java/org/sriki/osx/keychain/DependencyResolverMojoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/java/org/sriki/osx/keychain/DependencyResolverMojoTest.java -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/assign_add_qp_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/assign_add_qp_request.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/assign_build_get_token_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/assign_build_get_token_response.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/assign_build_json_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/assign_build_json_response.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/assign_build_xml_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/assign_build_xml_response.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/assign_handle_cookies_accept.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/assign_handle_cookies_accept.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/assign_refresh_token_json_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/assign_refresh_token_json_response.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/assign_set_local_form_variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/assign_set_local_form_variables.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/assign_set_local_header_variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/assign_set_local_header_variables.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/assign_set_local_query_variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/assign_set_local_query_variables.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/assign_set_user_create_target.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/assign_set_user_create_target.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/assign_set_user_login_target.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/assign_set_user_login_target.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/assign_transform_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/assign_transform_request.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/extract_refresh_token_params.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/extract_refresh_token_params.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/extract_user_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/extract_user_data.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/extract_user_res_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/extract_user_res_data.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/fault_accept_json_not_found.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/fault_accept_json_not_found.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/fault_invalid_secret.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/fault_invalid_secret.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/fault_user_creation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/fault_user_creation.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/js_prevent_req_path_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/js_prevent_req_path_copy.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/js_set_oauth_cred.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/js_set_oauth_cred.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/keymap_get_token_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/keymap_get_token_link.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/keymap_upd_token_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/keymap_upd_token_link.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/oauthv2_gen_accesstoken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/oauthv2_gen_accesstoken.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/oauthv2_refresh_accesstoken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/oauthv2_refresh_accesstoken.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/policies/service_callout_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/policies/service_callout_check.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/proxies/common_oauth_fault.flowfrag: -------------------------------------------------------------------------------- 1 | THIS SHOULD BE SEEN IN REPLACEMENT 2 | 3 | -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/proxies/getAccessToken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/proxies/getAccessToken.xml -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/proxies/resources/common_oauth_fault.flowfrag: -------------------------------------------------------------------------------- 1 | THIS SHOULD BE SEEN IN REPLACEMENT -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/resources/common_oauth_fault.flowfrag: -------------------------------------------------------------------------------- 1 | THIS SHOULD BE SEEN IN REPLACEMENT -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/resources/jsc/crypto_js/core-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/resources/jsc/crypto_js/core-min.js -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/resources/jsc/crypto_js/enc-base64-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/resources/jsc/crypto_js/enc-base64-min.js -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/resources/jsc/js_conv_age_to_dob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/resources/jsc/js_conv_age_to_dob.js -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/resources/jsc/js_prevent_req_path_copy.js: -------------------------------------------------------------------------------- 1 | context.setVariable('target.copy.pathsuffix',false); -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/resources/jsc/js_set_oauth_cred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/resources/jsc/js_set_oauth_cred.js -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/resources/jsc/js_set_user_attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/resources/jsc/js_set_user_attrs.js -------------------------------------------------------------------------------- /src/test/resources/Proxy/apiproxy/targets/oauth_client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/Proxy/apiproxy/targets/oauth_client.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/CommonProxy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/CommonProxy.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/assign_4g_client_secret.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/assign_4g_client_secret.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/assign_alter_queryparams_headers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/assign_alter_queryparams_headers.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/assign_copy_request_to_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/assign_copy_request_to_response.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/assign_init_variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/assign_init_variables.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/assign_remove_x_forward_headers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/assign_remove_x_forward_headers.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/assign_set_kms_auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/assign_set_kms_auth.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/assign_set_local_client_id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/assign_set_local_client_id.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/assign_set_variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/assign_set_variables.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/assign_to_route_google.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/assign_to_route_google.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/extract_access_token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/extract_access_token.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/extract_kms_token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/extract_kms_token.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/fault_appId_not_found.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/fault_appId_not_found.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/fault_invalid_secret.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/fault_invalid_secret.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/fault_validation_callout_failure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/fault_validation_callout_failure.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/java_transform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/java_transform.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/js_add_trusted_headers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/js_add_trusted_headers.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/js_check_accesstoken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/js_check_accesstoken.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/js_setkeyandauth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/js_setkeyandauth.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/js_setup_splunk_vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/js_setup_splunk_vars.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/js_target_endpoint_modification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/js_target_endpoint_modification.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/keymap_get_cred.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/keymap_get_cred.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/keymap_get_kmscredentials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/keymap_get_kmscredentials.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/log_splunk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/log_splunk.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/oauthv2_gen_ext_accesstoken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/oauthv2_gen_ext_accesstoken.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/oauthv2_token_get_attr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/oauthv2_token_get_attr.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/oauthv2_verify_accesstoken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/oauthv2_verify_accesstoken.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/py_createURL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/py_createURL.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/quota_rate_limit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/quota_rate_limit.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/rate_limit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/rate_limit.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/service_callout_kms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/service_callout_kms.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/spike_arrest_by_clientid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/spike_arrest_by_clientid.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/verify_apikey_clientid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/verify_apikey_clientid.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/policies/xsl_transform_geocode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/policies/xsl_transform_geocode.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/proxies/common_logging_post_flow_steps.flowfrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/proxies/common_logging_post_flow_steps.flowfrag -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/proxies/common_oauth_fault.flowfrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/proxies/common_oauth_fault.flowfrag -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/proxies/common_target_request_flow_steps.flowfrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/proxies/common_target_request_flow_steps.flowfrag -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/proxies/debug_and_test.flowfrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/proxies/debug_and_test.flowfrag -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/proxies/spike_arrest_and_quota.flowfrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/proxies/spike_arrest_and_quota.flowfrag -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/resources/java/xslt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/resources/java/xslt.jar -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/resources/jsc/crypto_js/core-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/resources/jsc/crypto_js/core-min.js -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/resources/jsc/crypto_js/enc-base64-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/resources/jsc/crypto_js/enc-base64-min.js -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/resources/jsc/crypto_js/enc-utf16-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/resources/jsc/crypto_js/enc-utf16-min.js -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/resources/jsc/crypto_js/sha512-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/resources/jsc/crypto_js/sha512-min.js -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/resources/jsc/crypto_js/x64-core-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/resources/jsc/crypto_js/x64-core-min.js -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/resources/jsc/js_add_trusted_headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/resources/jsc/js_add_trusted_headers.js -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/resources/jsc/js_check_accesstoken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/resources/jsc/js_check_accesstoken.js -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/resources/jsc/js_setkeyandauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/resources/jsc/js_setkeyandauth.js -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/resources/jsc/js_setup_splunk_vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/resources/jsc/js_setup_splunk_vars.js -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/resources/jsc/js_target_endpoint_modification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/resources/jsc/js_target_endpoint_modification.js -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/resources/jsc/moment_js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/resources/jsc/moment_js/moment.min.js -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/resources/py/createURL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/resources/py/createURL.py -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/resources/xsl/transform_geocode.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/resources/xsl/transform_geocode.xsl -------------------------------------------------------------------------------- /src/test/resources/ProxyRef/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/ProxyRef/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /src/test/resources/test-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/proxy-dependency-maven-plugin/HEAD/src/test/resources/test-pom.xml --------------------------------------------------------------------------------