diff --git a/README.md b/README.md index b13e027..428a9ce 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Add dependency: com.bol spring-data-mongodb-encrypt - 2.9.0 + 2.9.1 ``` @@ -160,6 +160,10 @@ public class MongoDBConfiguration extends AbstractMongoClientConfiguration { } ``` +## Starting mongodb for development (docker) + +A `docker-compose.yml` file is provided to allow for quickly running the tests and/or prototyping. +Use with `docker compose up`. ## Polymorphism (and why it's bad) diff --git a/pom.xml b/pom.xml index a79112a..5e62ac9 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ spring-data-mongodb-encrypt jar spring-data-mongodb-encrypt - 2.9.0 + 2.9.1 High performance, per-field encryption for spring-data-mongodb https://github.com/agoston/spring-data-mongodb-encrypt @@ -39,7 +39,7 @@ com.bol cryptvault - 1.0.2 + 3-1.0.2 org.mongodb @@ -50,13 +50,13 @@ org.springframework.data spring-data-mongodb - 4.2.0 + 4.3.3 provided org.springframework.boot spring-boot-autoconfigure - 3.2.0 + 3.3.3 provided @@ -64,21 +64,9 @@ org.springframework.boot spring-boot-starter-test - 3.2.0 + 3.3.3 test - - - - - - - - - - - - junit junit @@ -97,7 +85,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.6.1 + 3.13.0 1.8 1.8 @@ -106,7 +94,7 @@ org.apache.maven.plugins maven-source-plugin - 2.4 + 3.3.1 attach-sources @@ -119,7 +107,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 2.10.3 + 3.8.0 attach-javadocs diff --git a/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports b/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports new file mode 100644 index 0000000..ac532e6 --- /dev/null +++ b/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports @@ -0,0 +1 @@ +com.bol.config.EncryptAutoConfiguration