Skip to content

Commit

Permalink
update build gradle with new Python fix
Browse files Browse the repository at this point in the history
  • Loading branch information
immqu committed May 2, 2024
1 parent 38ddc06 commit f775d38
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
9 changes: 6 additions & 3 deletions cloudpg/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,18 @@ repositories {

dependencies {
implementation("org.junit.jupiter:junit-jupiter:5.7.0")

val version = "8.1.2"
implementation("com.github.Fraunhofer-AISEC.cpg:cpg:0198042dad")
implementation("de.fraunhofer.aisec:cpg-language-typescript:$version")

implementation("de.fraunhofer.aisec:cpg-core:$version")
/*implementation("de.fraunhofer.aisec:cpg-core:$version")
implementation("de.fraunhofer.aisec:cpg-analysis:$version")
implementation("de.fraunhofer.aisec:cpg-language-go:$version")
implementation("de.fraunhofer.aisec:cpg-language-python:$version")
implementation("com.github.Fraunhofer-AISEC:cpg:0198042dad")
implementation("de.fraunhofer.aisec:cpg-language-typescript:$version")
implementation("de.fraunhofer.aisec:cpg-language-java:$version")
implementation("de.fraunhofer.aisec:cpg-language-cxx:$version")
implementation("de.fraunhofer.aisec:cpg-language-cxx:$version")*/

implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.+")
implementation ("org.xmlunit:xmlunit-core:2.9.0")
Expand Down
1 change: 0 additions & 1 deletion cloudpg/src/main/java/io/clouditor/graph/App.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import io.clouditor.graph.passes.python.*
import io.clouditor.graph.testing.LocalTestingPass
import java.nio.file.Path
import java.util.concurrent.Callable
import kotlin.streams.toList
import kotlin.system.exitProcess
import org.neo4j.ogm.config.Configuration
import org.neo4j.ogm.session.SessionFactory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class LabelExtractionPass(ctx: TranslationContext) : TranslationResultPass(ctx)
}
}

// Labels that are equal to each other are merged to reduce them in size and and allow
// Labels that are equal to each other are merged to reduce them in size and allow
// associating them to Anonymization label
mergeEqualLabels(t)
// Connects labels and anonymization labels such that anonymization of labels can be
Expand Down Expand Up @@ -323,7 +323,7 @@ class LabelExtractionPass(ctx: TranslationContext) : TranslationResultPass(ctx)
}

/**
* Function to just add labels to the annotated node, the type of Label can me specified through
* Function to just add labels to the annotated node, the type of Label can be specified through
* the generic type specialization. Nodes that are in the Sub-AST of the annotated node, and
* have an outgoing DFG-edge to another node not in the annotated nodes Sub-AST.
*/
Expand Down

0 comments on commit f775d38

Please sign in to comment.