Skip to content

Commit

Permalink
Readme update. Use odb2 1.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu committed Jan 14, 2024
1 parent 2399f6b commit c055fcd
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 64 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Introduction

This project is a fork of [codepropertygraph](https://github.com/ShiftLeftSecurity/codepropertygraph) and uses a custom [db](https://github.com/AppThreat/overflowdb2). Further, we have removed the dependency on slf4j and MDC to enable native-image generation.

## License

Apache-2.0
8 changes: 2 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
name := "cpg2"
ThisBuild / organization := "io.appthreat"
ThisBuild / version := "0.0.2"
ThisBuild / version := "1.0.0"
ThisBuild / scalaVersion := "3.3.1"

// parsed by project/Versions.scala
val overflowdbVersion = "0.0.3"
val overflowdbVersion = "1.0.0"
val overflowdbCodegenVersion = "2.103"

ThisBuild / Test / fork := true
ThisBuild / Test / javaOptions += s"-Dlog4j2.configurationFile=file:${(ThisBuild / baseDirectory).value}/resources/log4j2-test.xml"
// If we fork we immediately stumble upon https://github.com/sbt/sbt/issues/3892 and https://github.com/sbt/sbt/issues/3892
ThisBuild / Test / javaOptions += s"-Duser.dir=${(ThisBuild / baseDirectory).value}"

ThisBuild / libraryDependencies ++= Seq(
// `Optional` means "not transitive", but still included in "stage/lib"
)

publish / skip := true

ThisBuild / resolvers ++= Seq(
Expand Down
Loading

0 comments on commit c055fcd

Please sign in to comment.