Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Binary file removed core/libs/soot-infoflow-trunk.jar
Binary file not shown.
27 changes: 10 additions & 17 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<name>core</name>
<version>1.0.0</version>
<description>Dynamic slicing core</description>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
Expand All @@ -19,8 +19,8 @@
<maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
<maven-assembly-plugin.version>3.1.0</maven-assembly-plugin.version>
</properties>


<build>
<finalName>core</finalName>
<sourceDirectory>src/main/java</sourceDirectory>
Expand Down Expand Up @@ -123,25 +123,18 @@
</plugins>
</build>

<repositories>
<repository>
<id>localrepository</id>
<url>file://${project.basedir}/libs</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>guru.nidi</groupId>
<artifactId>graphviz-java</artifactId>
<version>0.18.1</version>
</dependency>
<dependency>
<groupId>de.tud.sse</groupId>
<artifactId>soot-infoflow</artifactId>
<version>2.9.0-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/soot-infoflow-trunk-jar-with-dependencies.jar</systemPath>
</dependency>
<!-- https://mvnrepository.com/artifact/de.fraunhofer.sit.sse.flowdroid/soot-infoflow -->
<dependency>
<groupId>de.fraunhofer.sit.sse.flowdroid</groupId>
<artifactId>soot-infoflow</artifactId>
<version>2.10.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.hamcrest/java-hamcrest -->
<dependency>
<groupId>org.hamcrest</groupId>
Expand Down Expand Up @@ -183,7 +176,7 @@
<artifactId>commons-cli</artifactId>
<version>1.4</version>
</dependency>

<!-- We need this dependency to have output on the command
line for the JAR with dependencies -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import soot.Body;
import soot.Kind;
import soot.Local;
import soot.MethodSubSignature;
import soot.PhaseOptions;
import soot.RefType;
import soot.Scene;
Expand Down Expand Up @@ -153,7 +154,7 @@ private void addVirtualCallSite(Stmt s, SootMethod m, Local receiver, InstanceIn
}
receivers.add(receiver);
}
sites.add(new VirtualCallSite(s, m, iie, subSig, kind));
sites.add(new VirtualCallSite(s, m, iie, new MethodSubSignature(subSig), kind));
}

private void processNewMethod(SootMethod m) {
Expand Down