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