MVN

com.github.burningwave : bw-core

Maven & Gradle

Dec 30, 2019
1 usages

BurningWave core · Burningwave core is an advanced, free and open source Java library that contains THE MOST POWERFUL CLASSPATH SCANNER for criteria based classes search. It’s possible to search classes by every criteria that your immagination can made by using lambda expressions. Burningwave core scan engine is highly optimized using direct allocated ByteBuffers to avoid heap saturation; searches are executed in multithreading context and are not affected by “the issue of the same class loaded by different classloaders” (normally if you try to execute "isAssignableFrom" method on a same class loaded from different classloader it return false). This library is useful also for creating classes during runtime, facilitate the use of reflection and much more...

<dependency>
    <groupId>com.github.burningwave</groupId>
    <artifactId>bw-core</artifactId>
    <version>1.7.6</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.burningwave : bw-core to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.7.6

All Versions

Choose a version of com.github.burningwave : bw-core to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.7.x
bw-core-1.7.6
bw-core-1.7.5
bw-core-1.7.4
bw-core-1.7.3
bw-core-1.7.2
bw-core-1.7.1
bw-core-1.7.0
1.6.x
bw-core-1.6.6
bw-core-1.6.5
bw-core-1.6.4
bw-core-1.6.3
bw-core-1.6.2
bw-core-1.6.1
bw-core-1.6.0
1.5.x
bw-core-1.5.4
bw-core-1.5.3
bw-core-1.5.2
bw-core-1.5.1
bw-core-1.5.0
1.1.x
bw-core-1.1.23
bw-core-1.1.22
bw-core-1.1.21
bw-core-1.1.20
bw-core-1.1.17
bw-core-1.1.16
bw-core-1.1.15
bw-core-1.1.14
bw-core-1.1.13
bw-core-1.1.12
bw-core-1.1.11
bw-core-1.1.10
bw-core-1.1.8
bw-core-1.1.7
bw-core-1.1.6
bw-core-1.1.4
bw-core-1.1.3
bw-core-1.1.2
bw-core-1.1.1
bw-core-1.1.0
1.0.x
bw-core-1.0.8
bw-core-1.0.7
bw-core-1.0.6
bw-core-1.0.5
bw-core-1.0.4
bw-core-1.0.3
bw-core-1.0.2
bw-core-1.0.1
bw-core-1.0.0

How to add a dependency to Maven

Add the following com.github.burningwave : bw-core maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.burningwave</groupId>
    <artifactId>bw-core</artifactId>
    <version>1.7.6</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.burningwave : bw-core gradle dependency to your build.gradle file:

implementation 'com.github.burningwave:bw-core:1.7.6'

Gradle Kotlin DSL: Add the following com.github.burningwave : bw-core gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.burningwave:bw-core:1.7.6")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.burningwave : bw-core sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.burningwave" % "bw-core" % "1.7.6"

Advertisement