MVN

org.checkerframework : stubparser

Maven & Gradle

Sep 18, 2023
3 stars

Stub Parser · This project contains a parser for the Checker Framework's stub files: https://checkerframework.org/manual/#stub . It is a fork of the JavaParser project.

<dependency>
    <groupId>org.checkerframework</groupId>
    <artifactId>stubparser</artifactId>
    <version>3.25.5</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.checkerframework : stubparser to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 3.25.5

All Versions

Choose a version of org.checkerframework : stubparser to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
3.25.x
stubparser-3.25.5

How to add a dependency to Maven

Add the following org.checkerframework : stubparser maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.checkerframework</groupId>
    <artifactId>stubparser</artifactId>
    <version>3.25.5</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.checkerframework : stubparser gradle dependency to your build.gradle file:

implementation 'org.checkerframework:stubparser:3.25.5'

Gradle Kotlin DSL: Add the following org.checkerframework : stubparser gradle kotlin dependency to your build.gradle.kts file:

implementation("org.checkerframework:stubparser:3.25.5")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.checkerframework : stubparser sbt scala dependency to your build.sbt file:

libraryDependencies += "org.checkerframework" % "stubparser" % "3.25.5"

Advertisement