Skip to content

Commit

Permalink
🚑 TigerGraph schema hotfix no 2
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBakerEffendi committed Feb 25, 2021
1 parent e00c0ee commit 9800a47
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plume/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ dockerCompose {
def artifactDesc = "Plume is a code property graph analysis library with options to extract the CPG from" +
" Java bytecode and store the result in various graph databases."
def repoUrl = "https://github.com/plume-oss/plume.git"
def artifactVersion = "0.2.3.1"
def artifactVersion = "0.2.3.2"
def website = "https://plume-oss.github.io/plume-docs/"

group = "io.github.plume-oss"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class TigerGraphDriver internal constructor() : IOverridenIdDriver, ISchemaSafeD
*
* @param value the username e.g. "tigergraph".
*/
fun username(value: String): TigerGraphDriver = apply { hostname = value }
fun username(value: String): TigerGraphDriver = apply { username = value }

/**
* Set the password for the TigerGraph GSQL server.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import io.shiftleft.codepropertygraph.generated.NodeKeyNames

object ExtractorConst {
const val LANGUAGE_FRONTEND = "Plume"
const val LANGUAGE_FRONTEND_VERSION = "0.2.3.1"
const val LANGUAGE_FRONTEND_VERSION = "0.2.3.2"
val PRIMITIVES = listOf("boolean", "byte", "char", "double", "float", "int", "long", "null", "short", "void")
// block bodies
const val ENTRYPOINT = "BODY"
Expand Down

0 comments on commit 9800a47

Please sign in to comment.