java-callgraph

Basic renames and more ignores

5/27/2011 3:33:26 AM

Changes

.gitignore 3(+3 -0)

pom.xml 20(+14 -6)

src/test/java/gr/gousiosg/callgraph/AppTest.java 38(+0 -38)

Details

.gitignore 3(+3 -0)

diff --git a/.gitignore b/.gitignore
index 911fdbd..cc5f15f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,4 +7,7 @@ nbproject/private/
 *~
 target/
 bin/
+.classpath
+.project
+.settings/
 

pom.xml 20(+14 -6)

diff --git a/pom.xml b/pom.xml
index e111650..561b57e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -15,11 +15,19 @@
   </properties>
 
   <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
+  	<dependency>
+  		<groupId>junit</groupId>
+  		<artifactId>junit</artifactId>
+  		<version>4.8.2</version>
+  		<type>jar</type>
+  		<scope>compile</scope>
+  	</dependency>
+  	<dependency>
+  		<groupId>asm</groupId>
+  		<artifactId>asm-all</artifactId>
+  		<version>3.3</version>
+  		<type>jar</type>
+  		<scope>compile</scope>
+  	</dependency>
   </dependencies>
 </project>