#62 - Re-added MongoDB Log4j module in project model.

This is needed to make sure that all entries in the BOM get updated in Ingalls service releases.
This commit is contained in:
Oliver Gierke
2017-07-26 17:37:27 +02:00
parent 4cd460fa98
commit df8bbdb648

View File

@@ -45,9 +45,10 @@ public class Projects {
JPA = new Project("DATAJPA", "JPA").withDependencies(COMMONS);
MONGO_DB = new Project("DATAMONGO", "MongoDB")//
MONGO_DB = new Project("DATAMONGO", "MongoDB") //
.withDependencies(COMMONS) //
.withAdditionalArtifacts(ArtifactCoordinates.SPRING_DATA.artifacts("spring-data-mongodb-cross-store"));
.withAdditionalArtifacts(
ArtifactCoordinates.SPRING_DATA.artifacts("spring-data-mongodb-cross-store", "spring-data-mongodb-log4j"));
NEO4J = new Project("DATAGRAPH", "Neo4j").withDependencies(COMMONS);