12 lines
325 B
Groovy
12 lines
325 B
Groovy
dependencies {
|
|
implementation project(':common')
|
|
implementation 'org.mongodb:mongodb-driver-sync:3.12.14'
|
|
implementation 'com.google.code.gson:gson:2.11.0'
|
|
}
|
|
|
|
tasks.named('shadowJar') {
|
|
manifest {
|
|
attributes('Agent-Label': 'MongoDB (Legacy)', 'Main-Class': 'com.dbx.agent.mongodb.MongoAgent')
|
|
}
|
|
}
|