MVN

com.imperva.stepping : stepping

Maven & Gradle

Oct 20, 2022
10 stars

Stepping · Stepping is a framework designed to ease the implementation of data processing solutions. In use cases where we need to implement data or data-streaming algorithms or any other processing on data, we need to first handle many different infrastructure issues. For example, we need to decide how to split the data processing logic into different steps, think about our threading policy, how to handle communication between the different steps, error handling etc. One of the most important subjects is the Threading Policy of our solution. For example, we need to think how many threads to open, have the option to distribute the processing of data to multiple 'executors' in parallel, have a thread-safe communication layer between the threads etc. On top of that we also care a lot about the performance of our solution, we want to make sure that the latency added by these infrastructures is minimal as possible. Stepping aims to handle many of these aspects so developers can spend their time on the business logic instead of solving these infrastructure and data flow issues issues over and over again.

<dependency>
    <groupId>com.imperva.stepping</groupId>
    <artifactId>stepping</artifactId>
    <version>5.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.imperva.stepping : stepping to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 5.0.0

All Versions

Choose a version of com.imperva.stepping : stepping to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
5.0.x
stepping-5.0.0
4.0.x
stepping-4.0.6
stepping-4.0.5
stepping-4.0.4
stepping-4.0.3
stepping-4.0.2
stepping-4.0.1
stepping-4.0.0
3.9.x
stepping-3.9.2
stepping-3.9.1
stepping-3.9.0
3.8.x
stepping-3.8.0
3.7.x
stepping-3.7.2
3.6.x
stepping-3.6.3
3.5.x
stepping-3.5.0

How to add a dependency to Maven

Add the following com.imperva.stepping : stepping maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.imperva.stepping</groupId>
    <artifactId>stepping</artifactId>
    <version>5.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.imperva.stepping : stepping gradle dependency to your build.gradle file:

implementation 'com.imperva.stepping:stepping:5.0.0'

Gradle Kotlin DSL: Add the following com.imperva.stepping : stepping gradle kotlin dependency to your build.gradle.kts file:

implementation("com.imperva.stepping:stepping:5.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.imperva.stepping : stepping sbt scala dependency to your build.sbt file:

libraryDependencies += "com.imperva.stepping" % "stepping" % "5.0.0"

Advertisement