MVN

cz.afri : smg

Maven & Gradle

Oct 21, 2015
1 stars

SMG · SMG is a Java library implementing the abstract domain of symbolic memory graphs. The library is supposed to be used by static analyzers for C programs, especially those that need to deal with pointer-rich programs and those working with unbounded dynamic data structures.

<dependency>
    <groupId>cz.afri</groupId>
    <artifactId>smg</artifactId>
    <version>1.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of cz.afri : smg to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0

All Versions

Choose a version of cz.afri : smg to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0
smg-1.0

How to add a dependency to Maven

Add the following cz.afri : smg maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>cz.afri</groupId>
    <artifactId>smg</artifactId>
    <version>1.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following cz.afri : smg gradle dependency to your build.gradle file:

implementation 'cz.afri:smg:1.0'

Gradle Kotlin DSL: Add the following cz.afri : smg gradle kotlin dependency to your build.gradle.kts file:

implementation("cz.afri:smg:1.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following cz.afri : smg sbt scala dependency to your build.sbt file:

libraryDependencies += "cz.afri" % "smg" % "1.0"