-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
39 lines (31 loc) · 1.23 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
plugins {
id 'java'
id "io.freefair.aspectj.post-compile-weaving" version "5.3.3.3"
}
group 'com.axway'
version '1.0.10'
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
repositories {
mavenCentral()
}
tasks.withType(JavaCompile) {
options.compilerArgs += ['-Xlint:deprecation']
}
def apim_folder = '/Users/rnatarajan/v7apim/may2024/system'
dependencies {
implementation fileTree(dir: "${apim_folder}/lib", include: '*.jar')
implementation fileTree(dir: "${apim_folder}/lib/jce", include: '*.jar')
implementation fileTree(dir: "${apim_folder}/lib/plugins", include: '*.jar')
implementation group: 'org.aspectj', name: 'aspectjweaver', version: '1.9.6'
implementation group: 'com.dynatrace.oneagent.sdk.java', name: 'oneagent-sdk', version: '1.8.0'
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.12.4'
testImplementation group: 'org.powermock', name: 'powermock-module-junit4', version: '2.0.9'
testImplementation group: 'org.powermock', name: 'powermock-api-mockito2', version: '2.0.9'
}
jar{
metaInf {from('src/main/resources/aop.xml')}
}