How to add a dependency to Maven
Add the following com.perfma.wrapped : com.sun.tools maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>com.perfma.wrapped</groupId>
<artifactId>com.sun.tools</artifactId>
<version>1.8.0_jdk8u275-b01_linux_x64</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following com.perfma.wrapped : com.sun.tools gradle dependency to your build.gradle
file:
implementation 'com.perfma.wrapped:com.sun.tools:1.8.0_jdk8u275-b01_linux_x64'
Gradle Kotlin DSL: Add the following com.perfma.wrapped : com.sun.tools gradle kotlin dependency to your build.gradle.kts
file:
implementation("com.perfma.wrapped:com.sun.tools:1.8.0_jdk8u275-b01_linux_x64")
How to add a dependency to SBT Scala
SBT Scala: Add the following com.perfma.wrapped : com.sun.tools sbt scala dependency to your build.sbt
file:
libraryDependencies += "com.perfma.wrapped" % "com.sun.tools" % "1.8.0_jdk8u275-b01_linux_x64"