Deploy the iSDK with Agent API
To leverage Agent API functionality with the iSDK, you must package it with your custom interceptor jar. To accomplish this in Grade:
AppDynamics SaaS
list_alt
To leverage Agent API functionality with the iSDK, you must package it with your custom interceptor jar. To accomplish this in Grade:
configurations {
isdk
}
dependencies {
compile group: 'com.appdynamics.agent', name: 'agent-api', version: '20.6.0.30246'
isdk group: 'com.appdynamics.agent', name: 'agent-api', version: '20.6.0.30246'
…
}
AppdynamicsAgent
class inside the jar:
jar {
configurations.isdk.collect {
it.isDirectory() ? from(it) : from(zipTree(it)) {
include 'com/appdynamics/agent/api/AppdynamicsAgent.class'
}
}
includeEmptyDirs = false
}