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