MVN

org.javastack : crc

Maven & Gradle

Jan 07, 2024

org.javastack:crc · A cyclic redundancy check (CRC) is an error-detecting code commonly used to detect accidental changes to digital data

<dependency>
    <groupId>org.javastack</groupId>
    <artifactId>crc</artifactId>
    <version>1.0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.javastack : crc to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.1

All Versions

Choose a version of org.javastack : crc to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
crc-1.0.1
crc-1.0.0

How to add a dependency to Maven

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

<dependency>
    <groupId>org.javastack</groupId>
    <artifactId>crc</artifactId>
    <version>1.0.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.javastack : crc gradle dependency to your build.gradle file:

implementation 'org.javastack:crc:1.0.1'

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

implementation("org.javastack:crc:1.0.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.javastack : crc sbt scala dependency to your build.sbt file:

libraryDependencies += "org.javastack" % "crc" % "1.0.1"

Advertisement