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