Hello world

This commit is contained in:
2021-09-28 11:17:52 +02:00
commit 9cdbb84076
35 changed files with 1150 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
#
# Amdatu Blueprint mongodb feature
#
blueprint-feature.mongodb: mongodb
blueprint-repo.mongodb: https://repository.amdatu.org/amdatu-mongodb/r11/repo/index.xml.gz
blueprint-deps.mongodb: \
com.fasterxml.jackson.core:jackson-annotations:${com-fasterxml-jackson-core-version},\
com.fasterxml.jackson.core:jackson-core:${com-fasterxml-jackson-core-version},\
com.fasterxml.jackson.core:jackson-databind:${com-fasterxml-jackson-core-version},\
de.undercouch:bson4jackson:2.7.0,\
org.mongodb:mongodb-driver-sync:4.1.1,\
org.mongodb:mongodb-driver-core:4.1.1,\
org.mongodb:bson:4.1.1
#
# Build
#
-buildpath.blueprint-mongodb: \
${if;(buildfeaturesMerged[]=mongodb); \
org.amdatu.mongo,\
org.mongodb.driver-sync,\
org.mongodb.driver-core,\
org.mongodb.bson\
}
# Add testing support for mongodb if mongodb and testing feature are both enabled
-buildpath.blueprint-mongodb-testing: \
${if;(&(buildfeaturesMerged[]=mongodb)(buildfeaturesMerged[]=testing)); \
org.amdatu.mongo.testing\
}
#
# Run
#
-runbundles.blueprint-mongodb: \
${if;(runfeaturesMerged[]=mongodb); \
com.fasterxml.jackson.core.jackson-annotations,\
com.fasterxml.jackson.core.jackson-core,\
com.fasterxml.jackson.core.jackson-databind,\
de.undercouch.bson4jackson,\
org.amdatu.mongo,\
org.mongodb.driver-sync,\
org.mongodb.driver-core,\
org.mongodb.bson\
}
# Add testing support for mongodb if mongodb and testing feature are both enabled
-runbundles.blueprint-mongodb-testing: \
${if;(&(runfeaturesMerged[]=mongodb)(runfeaturesMerged[]=testing)); \
org.amdatu.mongo.testing\
}