You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2016/03/05 07:49:25 UTC

[02/14] cordova-paramedic git commit: Added build-success-plugin

Added build-success-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/e1b4c7c3
Tree: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/tree/e1b4c7c3
Diff: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/diff/e1b4c7c3

Branch: refs/heads/master
Commit: e1b4c7c36f80e35a9ceb3a0b7ab72ab5202e64d6
Parents: 8186932
Author: Shazron Abdullah <sh...@gmail.com>
Authored: Sat Mar 21 11:20:43 2015 -0700
Committer: Shazron Abdullah <sh...@gmail.com>
Committed: Sat Mar 21 11:20:43 2015 -0700

----------------------------------------------------------------------
 spec/build-fail-plugin/plugin.xml               |  2 +-
 spec/build-success-plugin/plugin.xml            | 44 ++++++++++++++++++++
 .../src/ios/CDVBuildSuccessPlugin.h             |  4 ++
 .../src/ios/CDVBuildSuccessPlugin.m             |  4 ++
 4 files changed, 53 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/e1b4c7c3/spec/build-fail-plugin/plugin.xml
----------------------------------------------------------------------
diff --git a/spec/build-fail-plugin/plugin.xml b/spec/build-fail-plugin/plugin.xml
index ebdc70f..6833349 100644
--- a/spec/build-fail-plugin/plugin.xml
+++ b/spec/build-fail-plugin/plugin.xml
@@ -21,7 +21,7 @@
 <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"
+    id="org.apache.cordova.build-fail-plugin"
     version="0.0.1">
     <name>Build Fail Plugin</name>
     <description>Cordova Build Fail Plugin</description>

http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/e1b4c7c3/spec/build-success-plugin/plugin.xml
----------------------------------------------------------------------
diff --git a/spec/build-success-plugin/plugin.xml b/spec/build-success-plugin/plugin.xml
new file mode 100644
index 0000000..3dafc68
--- /dev/null
+++ b/spec/build-success-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.build-success-plugin"
+    version="0.0.1">
+    <name>Build Success Plugin</name>
+    <description>Cordova Build Success Plugin</description>
+    <license>Apache 2.0</license>
+    <keywords>cordova</keywords>
+    <repo></repo>
+    <issue></issue>
+
+
+    <!-- ios -->
+    <platform name="ios">
+        <header-file src="src/ios/CDVBuildSuccessPlugin.h" />
+        <source-file src="src/ios/CDVBuildSuccessPlugin.m" />
+    </platform>
+
+    <platform name="android"/>
+    <platform name="wp8"/>
+
+
+</plugin>

http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/e1b4c7c3/spec/build-success-plugin/src/ios/CDVBuildSuccessPlugin.h
----------------------------------------------------------------------
diff --git a/spec/build-success-plugin/src/ios/CDVBuildSuccessPlugin.h b/spec/build-success-plugin/src/ios/CDVBuildSuccessPlugin.h
new file mode 100644
index 0000000..93b2026
--- /dev/null
+++ b/spec/build-success-plugin/src/ios/CDVBuildSuccessPlugin.h
@@ -0,0 +1,4 @@
+#import <Cordova/CDVPlugin.h>
+
+@interface CDVBuildSuccessPlugin : CDVPlugin
+@end
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/e1b4c7c3/spec/build-success-plugin/src/ios/CDVBuildSuccessPlugin.m
----------------------------------------------------------------------
diff --git a/spec/build-success-plugin/src/ios/CDVBuildSuccessPlugin.m b/spec/build-success-plugin/src/ios/CDVBuildSuccessPlugin.m
new file mode 100644
index 0000000..1d6b1a0
--- /dev/null
+++ b/spec/build-success-plugin/src/ios/CDVBuildSuccessPlugin.m
@@ -0,0 +1,4 @@
+#import "CDVBuildSuccessPlugin.h"
+
+@implementation CDVBuildSuccessPlugin
+@end
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org