Repository: cordova-paramedic Updated Branches: refs/heads/master 7ed83daa0 -> 940ab3517
Add build-fail-plugin Project: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/commit/81869328 Tree: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/tree/81869328 Diff: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/diff/81869328 Branch: refs/heads/master Commit: 8186932829d7d704f1a9e91693f3ef90583f70c3 Parents: 9718efe Author: Shazron Abdullah <[email protected]> Authored: Sat Mar 21 11:14:54 2015 -0700 Committer: Shazron Abdullah <[email protected]> Committed: Sat Mar 21 11:14:54 2015 -0700 ---------------------------------------------------------------------- spec/build-fail-plugin/plugin.xml | 44 ++++++++++++++++++++ .../src/ios/CDVBuildFailPlugin.h | 4 ++ .../src/ios/CDVBuildFailPlugin.m | 4 ++ 3 files changed, 52 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/81869328/spec/build-fail-plugin/plugin.xml ---------------------------------------------------------------------- diff --git a/spec/build-fail-plugin/plugin.xml b/spec/build-fail-plugin/plugin.xml new file mode 100644 index 0000000..ebdc70f --- /dev/null +++ b/spec/build-fail-plugin/plugin.xml @@ -0,0 +1,44 @@ +<?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://apache.org/cordova/ns/plugins/1.0" + xmlns:rim="http://www.blackberry.com/ns/widgets" + xmlns:android="http://schemas.android.com/apk/res/android" + id="org.apache.cordova.testable-plugin" + version="0.0.1"> + <name>Build Fail Plugin</name> + <description>Cordova Build Fail Plugin</description> + <license>Apache 2.0</license> + <keywords>cordova</keywords> + <repo></repo> + <issue></issue> + + + <!-- ios --> + <platform name="ios"> + <header-file src="src/ios/CDVBuildFailPlugin.h" /> + <source-file src="src/ios/CDVBuildFailPlugin.m" /> + </platform> + + <platform name="android"/> + <platform name="wp8"/> + + +</plugin> http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/81869328/spec/build-fail-plugin/src/ios/CDVBuildFailPlugin.h ---------------------------------------------------------------------- diff --git a/spec/build-fail-plugin/src/ios/CDVBuildFailPlugin.h b/spec/build-fail-plugin/src/ios/CDVBuildFailPlugin.h new file mode 100644 index 0000000..6cbac66 --- /dev/null +++ b/spec/build-fail-plugin/src/ios/CDVBuildFailPlugin.h @@ -0,0 +1,4 @@ +// will fail because there is no #import + +@interface CDVBuildFailPlugin : CDVPlugin +@end \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/81869328/spec/build-fail-plugin/src/ios/CDVBuildFailPlugin.m ---------------------------------------------------------------------- diff --git a/spec/build-fail-plugin/src/ios/CDVBuildFailPlugin.m b/spec/build-fail-plugin/src/ios/CDVBuildFailPlugin.m new file mode 100644 index 0000000..25061dd --- /dev/null +++ b/spec/build-fail-plugin/src/ios/CDVBuildFailPlugin.m @@ -0,0 +1,4 @@ +#import "CDVBuildFailPlugin.h" + +@implementation CDVBuildFailPlugin +@end \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
