Updated Branches: refs/heads/master e61febbff -> f9333c00a
Add dependencies-plugin, which I failed to "git add" previously. Project: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/commit/f9333c00 Tree: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/tree/f9333c00 Diff: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/diff/f9333c00 Branch: refs/heads/master Commit: f9333c00a720d1bda5cedf8dbba3c9f4b2008a1f Parents: e61febb Author: Andrew Grieve <[email protected]> Authored: Wed Jul 3 16:47:45 2013 -0400 Committer: Andrew Grieve <[email protected]> Committed: Wed Jul 3 16:47:45 2013 -0400 ---------------------------------------------------------------------- dependencies-plugin/plugin.xml | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/f9333c00/dependencies-plugin/plugin.xml ---------------------------------------------------------------------- diff --git a/dependencies-plugin/plugin.xml b/dependencies-plugin/plugin.xml new file mode 100644 index 0000000..8daef69 --- /dev/null +++ b/dependencies-plugin/plugin.xml @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +--> + +<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0" + id="org.cordova.mobile-spec-dependencies" + version="1.0.0"> + <engines> + <engine name="cordova" version=">=2.7" /> + </engines> + + <name>Mobile-Spec plugin to quickly pull in all cordova plugins</name> + + <dependency id="org.apache.cordova.core.battery-status" url="." subdir="../cordova-plugin-battery-status" /> + <dependency id="org.apache.cordova.core.camera" url="." subdir="../cordova-plugin-camera" /> + <dependency id="org.apache.cordova.core.console" url="." subdir="../cordova-plugin-console" /> + <dependency id="org.apache.cordova.core.contacts" url="." subdir="../cordova-plugin-contacts" /> + <dependency id="org.apache.cordova.core.device" url="." subdir="../cordova-plugin-device" /> + <dependency id="org.apache.cordova.core.device-motion" url="." subdir="../cordova-plugin-device-motion" /> + <dependency id="org.apache.cordova.core.device-orientation" url="." subdir="../cordova-plugin-device-orientation" /> + <dependency id="org.apache.cordova.core.dialogs" url="." subdir="../cordova-plugin-dialogs" /> + <dependency id="org.apache.cordova.core.file" url="." subdir="../cordova-plugin-file" /> + <dependency id="org.apache.cordova.core.file-transfer" url="." subdir="../cordova-plugin-file-transfer" /> + <dependency id="org.apache.cordova.core.geolocation" url="." subdir="../cordova-plugin-geolocation" /> + <dependency id="org.apache.cordova.core.globalization" url="." subdir="../cordova-plugin-globalization" /> + <dependency id="org.apache.cordova.core.inappbrowser" url="." subdir="../cordova-plugin-inappbrowser" /> + <dependency id="org.apache.cordova.core.media-capture" url="." subdir="../cordova-plugin-media-capture" /> + <dependency id="org.apache.cordova.core.network-information" url="." subdir="../cordova-plugin-network-information" /> + <dependency id="org.apache.cordova.core.splashscreen" url="." subdir="../cordova-plugin-splashscreen" /> + <dependency id="org.apache.cordova.core.vibration" url="." subdir="../cordova-plugin-vibration" /> +</plugin>
