soot-oss / SootUp

A new version of Soot with a completely overhauled architecture
https://soot-oss.github.io/SootUp/
GNU Lesser General Public License v2.1
565 stars 73 forks source link

A question about JavaView #731

Closed cshezhang closed 10 months ago

cshezhang commented 10 months ago

It seems that JavaProject does not have a createView method? Is it replaced by the createFullView? I find many examples use createView.

image

My pom.xml:

<dependencies>
    <dependency>
        <groupId>org.soot-oss</groupId>
        <artifactId>sootup.core</artifactId>
        <version>1.0.0</version>
    </dependency>
    <dependency>
        <groupId>org.soot-oss</groupId>
        <artifactId>sootup.java.core</artifactId>
        <version>1.0.0</version>
    </dependency>
    <dependency>
        <groupId>org.soot-oss</groupId>
        <artifactId>sootup.java.sourcecode</artifactId>
        <version>1.0.0</version>
    </dependency>
    <dependency>
        <groupId>org.soot-oss</groupId>
        <artifactId>sootup.java.bytecode</artifactId>
        <version>1.0.0</version>
    </dependency>
    <dependency>
        <groupId>org.soot-oss</groupId>
        <artifactId>sootup.jimple.parser</artifactId>
        <version>1.0.0</version>
    </dependency>
    <dependency>
        <groupId>org.soot-oss</groupId>
        <artifactId>sootup.callgraph</artifactId>
        <version>1.0.0</version>
    </dependency>
    <dependency>
        <groupId>org.soot-oss</groupId>
        <artifactId>sootup.analysis</artifactId>
        <version>1.0.0</version>
    </dependency>
</dependencies>
swissiety commented 10 months ago

Hi, the doc is already up to date with the current develop branch - i.e. its the other way round but I think even the latest release (>1.0.0) on maven does not contain the createView() yet

cshezhang commented 10 months ago

@swissiety Got it, my pom.xml just followed the instruction in the document, I think we should update the doc. Thank you.