java-callgraph

Changes

pom.xml 7(+7 -0)

README 10(+0 -10)

README.md 22(+22 -0)

Details

pom.xml 7(+7 -0)

diff --git a/pom.xml b/pom.xml
index 03c8154..e18fe5a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,5 +29,12 @@
   		<type>jar</type>
   		<scope>compile</scope>
   	</dependency>
+  	 <dependency>
+    	<groupId>javassist</groupId>
+    	<artifactId>javassist</artifactId>
+    	<version>3.12.1.GA</version>
+    	<type>jar</type>
+    	<scope>compile</scope>
+    </dependency>
   </dependencies>
 </project>

README.md 22(+22 -0)

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..1526e68
--- /dev/null
+++ b/README.md
@@ -0,0 +1,22 @@
+Java Call Graph Utils
+=====================
+
+A suite of programs for generating static and dynamic call graphs in Java.
+
+
+
+
+-Known Restrictions
+
+* The static call graph generator does not account for methods invoked using
+  reflection.  
+  
+Author
+------
+
+Georgios Gousios <gousiosg@gmail.com>
+
+License
+-------
+
+2-clause BSD
\ No newline at end of file