aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorMufaddal Makati <mmakati@mmakatimbpr15.cablelabs.com>2015-08-07 13:09:49 -0700
committerMufaddal Makati <mmakati@mmakatimbpr15.cablelabs.com>2015-08-07 13:09:49 -0700
commited73dbf357aff41edcbab401a94e5fbc266d9391 (patch)
treee3561a9290e4bd0de19704228867ec91910e68ed /common
parentf44f4aa8b5eb244fc7603c17e875eebf0f3b0b67 (diff)
First Commit
Diffstat (limited to 'common')
-rw-r--r--common/pom.xml17
-rw-r--r--common/src/main/java/com/cablelabs/vcpe/common/Dbg.java24
-rw-r--r--common/target/classes/com/cablelabs/vcpe/common/Dbg.classbin0 -> 1200 bytes
-rw-r--r--common/target/common.jarbin0 -> 2690 bytes
-rw-r--r--common/target/maven-archiver/pom.properties5
-rw-r--r--common/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst1
-rw-r--r--common/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst1
7 files changed, 48 insertions, 0 deletions
diff --git a/common/pom.xml b/common/pom.xml
new file mode 100644
index 0000000..0a353d6
--- /dev/null
+++ b/common/pom.xml
@@ -0,0 +1,17 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>com.cablelabs.vcpe</groupId>
+ <artifactId>common</artifactId>
+ <packaging>jar</packaging>
+ <version>1.0-SNAPSHOT</version>
+
+ <build>
+ <finalName>common</finalName>
+ </build>
+
+ <dependencies></dependencies>
+
+</project>
diff --git a/common/src/main/java/com/cablelabs/vcpe/common/Dbg.java b/common/src/main/java/com/cablelabs/vcpe/common/Dbg.java
new file mode 100644
index 0000000..b98f1e1
--- /dev/null
+++ b/common/src/main/java/com/cablelabs/vcpe/common/Dbg.java
@@ -0,0 +1,24 @@
+package com.cablelabs.vcpe.common;
+
+/**
+ * Created by steve on 5/25/15.
+ */
+public class Dbg {
+
+ private static final String TAB = " ";
+
+
+ static public void p( String s) { p( 0, "", s);}
+ static public void p( int tabs, String s) { p( tabs, "", s);}
+ static public void p( int tabs, String pre, String s){
+ System.out.println(tab(tabs) + pre + s);
+ }
+
+ static private String tab (int tabs) {
+ String t = new String();
+ for ( int i = 0; i < tabs; i++ ) {
+ t = t + TAB;
+ }
+ return t;
+ }
+}
diff --git a/common/target/classes/com/cablelabs/vcpe/common/Dbg.class b/common/target/classes/com/cablelabs/vcpe/common/Dbg.class
new file mode 100644
index 0000000..9af32e8
--- /dev/null
+++ b/common/target/classes/com/cablelabs/vcpe/common/Dbg.class
Binary files differ
diff --git a/common/target/common.jar b/common/target/common.jar
new file mode 100644
index 0000000..267b07a
--- /dev/null
+++ b/common/target/common.jar
Binary files differ
diff --git a/common/target/maven-archiver/pom.properties b/common/target/maven-archiver/pom.properties
new file mode 100644
index 0000000..05beb19
--- /dev/null
+++ b/common/target/maven-archiver/pom.properties
@@ -0,0 +1,5 @@
+#Generated by Maven
+#Thu Aug 06 14:01:17 PDT 2015
+version=1.0-SNAPSHOT
+groupId=com.cablelabs.vcpe
+artifactId=common
diff --git a/common/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/common/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
new file mode 100644
index 0000000..4ef3036
--- /dev/null
+++ b/common/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
@@ -0,0 +1 @@
+com/cablelabs/vcpe/common/Dbg.class
diff --git a/common/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/common/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
new file mode 100644
index 0000000..72ad648
--- /dev/null
+++ b/common/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
@@ -0,0 +1 @@
+/Users/mmakati/vcpe-services/common/src/main/java/com/cablelabs/vcpe/common/Dbg.java