Skip to content

Commit c89fa85

Browse files
committed
Restructure into eclipse maven project
1 parent c5a813f commit c89fa85

File tree

86 files changed

+193
-4840
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+193
-4840
lines changed

.classpath

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
10+
<attributes>
11+
<attribute name="optional" value="true"/>
12+
<attribute name="maven.pomderived" value="true"/>
13+
</attributes>
14+
</classpathentry>
15+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
16+
<attributes>
17+
<attribute name="maven.pomderived" value="true"/>
18+
</attributes>
19+
</classpathentry>
20+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
21+
<attributes>
22+
<attribute name="maven.pomderived" value="true"/>
23+
</attributes>
24+
</classpathentry>
25+
<classpathentry kind="output" path="target/classes"/>
26+
</classpath>

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
out.txt
2-
test-android-out/
1+
target/

.project

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>graphextrator</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
22+
</natures>
23+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
eclipse.preferences.version=1
2+
encoding//src/main/java=UTF-8
3+
encoding//src/test/java=UTF-8
4+
encoding/<project>=UTF-8

.settings/org.eclipse.jdt.core.prefs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
3+
org.eclipse.jdt.core.compiler.compliance=1.5
4+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
5+
org.eclipse.jdt.core.compiler.source=1.5

.settings/org.eclipse.m2e.core.prefs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1

Makefile

-33
This file was deleted.

README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
astparser
2-
=========
1+
Android Event-Flow Graph Extrator
2+
3+
Extract Android java source code to build an event-flow graph (EFG)
34

4-
AST Parser - exploring for Android source analysis
5+
=========
6+
formerly as "astparser"
57

6-
AST Parser depends on some Eclipse components and other libraries as wells.
7-
To find out the dependency required, look at Makefile.
8-
Put all the dependency in a folder name "lib".
9-
Use make commands to run and test.
8+
AST Parser - exploring for Android source analysis

graphviz/Calculator.gv

-11
This file was deleted.

graphviz/Calendar.gv

-34
This file was deleted.

graphviz/Camera.gv

-5
This file was deleted.

graphviz/Camera2.gv

-14
This file was deleted.

graphviz/Contacts.gv

-43
This file was deleted.

graphviz/ContactsCommon.gv

-11
This file was deleted.

graphviz/DeskClock.gv

-53
This file was deleted.

graphviz/Dialer.gv

-15
This file was deleted.

graphviz/Email.gv

-34
This file was deleted.

graphviz/Gallery.gv

-36
This file was deleted.

0 commit comments

Comments
 (0)