#405 - Add Example for MongoDB Schema & Validation.
This commit is contained in:
committed by
Mark Paluch
parent
04be1b9784
commit
9520ac6a75
34
mongodb/schema-validation/pom.xml
Normal file
34
mongodb/schema-validation/pom.xml
Normal file
@@ -0,0 +1,34 @@
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>spring-data-mongodb-schema-validation</artifactId>
|
||||
|
||||
<name>Spring Data MongoDB 2.1 - Schema & Validation Example</name>
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.data.examples</groupId>
|
||||
<artifactId>spring-data-mongodb-examples</artifactId>
|
||||
<version>2.0.0.BUILD-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
<mongodb.version>3.8.0</mongodb.version>
|
||||
<mongo-driver-reactivestreams.version>1.9.0</mongo-driver-reactivestreams.version>
|
||||
<spring-data-releasetrain.version>Lovelace-RC2</spring-data-releasetrain.version>
|
||||
</properties>
|
||||
|
||||
<profiles>
|
||||
|
||||
<!-- Override property as the module always needs Lovelace -->
|
||||
|
||||
<profile>
|
||||
<id>spring-data-next</id>
|
||||
<properties>
|
||||
<spring-data-releasetrain.version>Lovelace-RC2</spring-data-releasetrain.version>
|
||||
</properties>
|
||||
</profile>
|
||||
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user