How to add a dependency to Maven
Add the following com.github.sylphlike : framework-boxing maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>com.github.sylphlike</groupId>
<artifactId>framework-boxing</artifactId>
<version>1.0.0-SYLPHLIKE</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following com.github.sylphlike : framework-boxing gradle dependency to your build.gradle
file:
implementation 'com.github.sylphlike:framework-boxing:1.0.0-SYLPHLIKE'
Gradle Kotlin DSL: Add the following com.github.sylphlike : framework-boxing gradle kotlin dependency to your build.gradle.kts
file:
implementation("com.github.sylphlike:framework-boxing:1.0.0-SYLPHLIKE")
How to add a dependency to SBT Scala
SBT Scala: Add the following com.github.sylphlike : framework-boxing sbt scala dependency to your build.sbt
file:
libraryDependencies += "com.github.sylphlike" % "framework-boxing" % "1.0.0-SYLPHLIKE"