2024-12-03 06:57:43 +05:30
|
|
|
|
2023-12-15 13:28:33 -06:00
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
|
|
|
id 'pegasus'
|
2022-09-25 10:39:22 -05:00
|
|
|
}
|
|
|
|
|
2024-12-03 06:57:43 +05:30
|
|
|
apply from: "../gradle/coverage/java-coverage.gradle"
|
|
|
|
|
2023-12-15 13:28:33 -06:00
|
|
|
|
2019-08-31 20:51:14 -07:00
|
|
|
dependencies {
|
2023-09-01 09:06:01 -05:00
|
|
|
api spec.product.pegasus.data
|
|
|
|
implementation externalDependency.commonsLang
|
|
|
|
implementation(externalDependency.reflections) {
|
2022-06-14 15:46:00 -05:00
|
|
|
exclude group: 'com.google.guava', module: 'guava'
|
|
|
|
}
|
2023-09-01 09:06:01 -05:00
|
|
|
implementation externalDependency.guava
|
2020-11-09 14:08:48 -08:00
|
|
|
|
2022-12-04 21:57:47 -06:00
|
|
|
implementation externalDependency.slf4jApi
|
2022-01-05 19:32:31 -06:00
|
|
|
compileOnly externalDependency.lombok
|
|
|
|
annotationProcessor externalDependency.lombok
|
2020-11-09 14:08:48 -08:00
|
|
|
|
2023-09-01 09:06:01 -05:00
|
|
|
testImplementation externalDependency.assertJ
|
|
|
|
testImplementation externalDependency.commonsIo
|
|
|
|
testImplementation project(':test-models')
|
|
|
|
testImplementation project(path: ':test-models', configuration: 'testDataTemplate')
|
2023-12-15 13:28:33 -06:00
|
|
|
testImplementation externalDependency.testng
|
2019-08-31 20:51:14 -07:00
|
|
|
}
|
|
|
|
|
2020-10-23 15:14:57 -07:00
|
|
|
idea {
|
|
|
|
module {
|
|
|
|
sourceDirs += file('src/main/javaPegasus')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-07 17:09:52 -05:00
|
|
|
// Need to compile backing java parameterDefinitions with the data template.
|
2023-12-15 13:28:33 -06:00
|
|
|
sourceSets.mainGeneratedDataTemplate.java.srcDirs('src/main/javaPegasus/')
|