How to add a dependency to Maven
Add the following de.xn--ho-hia.javapoet : javapoet-type-guesser maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>de.xn--ho-hia.javapoet</groupId>
<artifactId>javapoet-type-guesser</artifactId>
<version>2017.03.19-185842</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following de.xn--ho-hia.javapoet : javapoet-type-guesser gradle dependency to your build.gradle
file:
implementation 'de.xn--ho-hia.javapoet:javapoet-type-guesser:2017.03.19-185842'
Gradle Kotlin DSL: Add the following de.xn--ho-hia.javapoet : javapoet-type-guesser gradle kotlin dependency to your build.gradle.kts
file:
implementation("de.xn--ho-hia.javapoet:javapoet-type-guesser:2017.03.19-185842")
How to add a dependency to SBT Scala
SBT Scala: Add the following de.xn--ho-hia.javapoet : javapoet-type-guesser sbt scala dependency to your build.sbt
file:
libraryDependencies += "de.xn--ho-hia.javapoet" % "javapoet-type-guesser" % "2017.03.19-185842"