Skip to content

Commit f98cdc1

Browse files
committed
Basic renames and more ignores
1 parent bf7276e commit f98cdc1

4 files changed

Lines changed: 18 additions & 49 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,7 @@ nbproject/private/
77
*~
88
target/
99
bin/
10+
.classpath
11+
.project
12+
.settings/
1013

pom.xml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,19 @@
1515
</properties>
1616

1717
<dependencies>
18-
<dependency>
19-
<groupId>junit</groupId>
20-
<artifactId>junit</artifactId>
21-
<version>3.8.1</version>
22-
<scope>test</scope>
23-
</dependency>
18+
<dependency>
19+
<groupId>junit</groupId>
20+
<artifactId>junit</artifactId>
21+
<version>4.8.2</version>
22+
<type>jar</type>
23+
<scope>compile</scope>
24+
</dependency>
25+
<dependency>
26+
<groupId>asm</groupId>
27+
<artifactId>asm-all</artifactId>
28+
<version>3.3</version>
29+
<type>jar</type>
30+
<scope>compile</scope>
31+
</dependency>
2432
</dependencies>
2533
</project>

src/main/java/gr/gousiosg/callgraph/App.java renamed to src/main/java/gr/gousiosg/callgraph/JCallGraph.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
package gr.gousiosg.callgraph;
22

3-
/**
4-
* Hello world!
5-
*
6-
*/
7-
public class App
3+
public class JCallGraph
84
{
95
public static void main( String[] args )
106
{

src/test/java/gr/gousiosg/callgraph/AppTest.java

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)