diff --git a/.deploy.sh b/.deploy.sh
index 53d46b19..0656f35b 100644
--- a/.deploy.sh
+++ b/.deploy.sh
@@ -1,4 +1,4 @@
mvn clean install -DskipTests
-scp example-springboot/target/example-springboot-0.9.1.jar root@87.106.171.45:elasticobjects2.jar
+scp example-springboot/target/example-springboot-0.9.2-SNAPSHOT.jar root@87.106.171.45:elasticobjects2.jar
export pid = `ssh root@87.106.171.45 ps -ef| grep java`
nohup java -jar elasticobjects2.jar --server.port=80 2>error.log 1>test.log &
\ No newline at end of file
diff --git a/README.md b/README.md
index a5027021..a8cd8cb5 100755
--- a/README.md
+++ b/README.md
@@ -242,7 +242,7 @@ is equivalent to
Conclusion
-The project has now version 0.9.1 and it's good enough for a proof of concept. For
+The project has now version 0.9.2-SNAPSHOT and it's good enough for a proof of concept. For
the hyped microservice architectures it would offer an incredible flexibility compared with
RPC API solutions.
diff --git a/elastic-objects-test/pom.xml b/elastic-objects-test/pom.xml
index 3574088a..d297c257 100644
--- a/elastic-objects-test/pom.xml
+++ b/elastic-objects-test/pom.xml
@@ -6,7 +6,7 @@
org.fluentcodes.projects.elasticobjects
elastic-objects-test
jar
- 0.9.1
+ 0.9.2-SNAPSHOT
EO - Elastic Objects Tests and Test Resource
Package for testing Elastic Objects
@@ -21,7 +21,7 @@
org.fluentcodes.projects.elasticobjects
elastic-objects
- 0.9.1
+ 0.9.2-SNAPSHOT
org.fluentcodes.tools
diff --git a/elastic-objects/pom.xml b/elastic-objects/pom.xml
index 2c5e3447..cb17cd84 100644
--- a/elastic-objects/pom.xml
+++ b/elastic-objects/pom.xml
@@ -5,7 +5,7 @@
org.fluentcodes.projects.elasticobjects
elastic-objects
jar
- 0.9.1
+ 0.9.2-SNAPSHOT
EO - Elastic Objects Core
An object wrapper for access, navigate, modify, serialize and deserialize complex java object via path in a typesafe and ordered way with JSON.
@@ -25,7 +25,7 @@
org.apache.logging.log4j
log4j-core
- 2.16.0
+ 2.17.0
diff --git a/eo-calls/pom.xml b/eo-calls/pom.xml
index 2b6c68de..0bad703a 100644
--- a/eo-calls/pom.xml
+++ b/eo-calls/pom.xml
@@ -5,7 +5,7 @@
org.fluentcodes.projects.elasticobjects
eo-calls
jar
- 0.9.1
+ 0.9.2-SNAPSHOT
EO Calls
Some basic calls for file resources and templates.
@@ -25,12 +25,12 @@
org.fluentcodes.projects.elasticobjects
elastic-objects
- 0.9.1
+ 0.9.2-SNAPSHOT
org.fluentcodes.projects.elasticobjects
elastic-objects-test
- 0.9.1
+ 0.9.2-SNAPSHOT
test
diff --git a/eo-csv/pom.xml b/eo-csv/pom.xml
index affc1134..cb486ad6 100644
--- a/eo-csv/pom.xml
+++ b/eo-csv/pom.xml
@@ -6,7 +6,7 @@
org.fluentcodes.projects.elasticobjects
eo-csv
jar
- 0.9.1
+ 0.9.2-SNAPSHOT
EO - Elastic objects CSV calls
CSV calls for Elastic Objects
@@ -21,7 +21,7 @@
org.fluentcodes.projects.elasticobjects
eo-calls
- 0.9.1
+ 0.9.2-SNAPSHOT
net.sf.opencsv
@@ -31,7 +31,7 @@
org.fluentcodes.projects.elasticobjects
elastic-objects-test
- 0.9.1
+ 0.9.2-SNAPSHOT
test
diff --git a/eo-db/pom.xml b/eo-db/pom.xml
index 04d1324c..654d2362 100644
--- a/eo-db/pom.xml
+++ b/eo-db/pom.xml
@@ -6,7 +6,7 @@
org.fluentcodes.projects.elasticobjects
eo-db
jar
- 0.9.1
+ 0.9.2-SNAPSHOT
EO - Elastic objects DB calls
DB calls for Elastic Objects
@@ -21,7 +21,7 @@
org.fluentcodes.projects.elasticobjects
eo-calls
- 0.9.1
+ 0.9.2-SNAPSHOT
com.h2database
@@ -32,7 +32,7 @@
org.fluentcodes.projects.elasticobjects
elastic-objects-test
- 0.9.1
+ 0.9.2-SNAPSHOT
test
diff --git a/eo-xlsx/pom.xml b/eo-xlsx/pom.xml
index 16b1caf1..ccefbaa8 100644
--- a/eo-xlsx/pom.xml
+++ b/eo-xlsx/pom.xml
@@ -6,7 +6,7 @@
org.fluentcodes.projects.elasticobjects
eo-xlsx
jar
- 0.9.1
+ 0.9.2-SNAPSHOT
EO - Elastic objects Xlsx calls
Xlsx calls for Elastic Objects
@@ -21,7 +21,7 @@
org.fluentcodes.projects.elasticobjects
eo-calls
- 0.9.1
+ 0.9.2-SNAPSHOT
org.apache.poi
@@ -36,7 +36,7 @@
org.fluentcodes.projects.elasticobjects
elastic-objects-test
- 0.9.1
+ 0.9.2-SNAPSHOT
test
diff --git a/example-springboot/README.md b/example-springboot/README.md
index 1da2ad76..e79995a1 100644
--- a/example-springboot/README.md
+++ b/example-springboot/README.md
@@ -9,11 +9,11 @@ The input files are not part of the fat jar to avoid the annoying build process
#### Start
Instead with linux you have to start with
- java -cp example-springboot/target/example-springboot-0.9.1.jar:example-springboot/input/ org.springframework.boot.loader.PropertiesLauncher
+ java -cp example-springboot/target/example-springboot-0.9.2-SNAPSHOT.jar:example-springboot/input/ org.springframework.boot.loader.PropertiesLauncher
Or with windows use ";" instead of ":" as separator
- java -cp example-springboot/target/example-springboot-0.9.1.jar;example-springboot/input/ org.springframework.boot.loader.PropertiesLauncher
+ java -cp example-springboot/target/example-springboot-0.9.2-SNAPSHOT.jar;example-springboot/input/ org.springframework.boot.loader.PropertiesLauncher
#### Useed Modules
It uses configurations from the modules
diff --git a/example-springboot/input/web/blog/Blog.html b/example-springboot/input/web/blog/Blog.html
index bfdd87ef..632f76a4 100644
--- a/example-springboot/input/web/blog/Blog.html
+++ b/example-springboot/input/web/blog/Blog.html
@@ -45,5 +45,5 @@ The log for V0.8.0.
2.11.2020
- Started 0.9.1.
+ Started 0.9.2-SNAPSHOT.
diff --git a/example-springboot/pom.xml b/example-springboot/pom.xml
index e71cc158..6f4130be 100644
--- a/example-springboot/pom.xml
+++ b/example-springboot/pom.xml
@@ -6,7 +6,7 @@
org.fluentcodes.projects.elasticobjects
example-springboot
jar
- 0.9.1
+ 0.9.2-SNAPSHOT
EO example spring boot
@@ -20,17 +20,17 @@
org.fluentcodes.projects.elasticobjects
elastic-objects-test
- 0.9.1
+ 0.9.2-SNAPSHOT
org.fluentcodes.projects.elasticobjects
eo-xlsx
- 0.9.1
+ 0.9.2-SNAPSHOT
org.fluentcodes.projects.elasticobjects
eo-db
- 0.9.1
+ 0.9.2-SNAPSHOT
junit
diff --git a/pom.xml b/pom.xml
index 15a7aecf..266ef39f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
org.fluentcodes.projects.elasticobjects
eo-root
pom
- 0.9.1
+ 0.9.2-SNAPSHOT
EO - Elastic Objects Root
diff --git a/start.sh b/start.sh
index e249d355..9c65da24 100755
--- a/start.sh
+++ b/start.sh
@@ -1 +1 @@
-java -cp example-springboot/target/example-springboot-0.9.1.jar:example-springboot/input/ org.springframework.boot.loader.PropertiesLauncher
\ No newline at end of file
+java -cp example-springboot/target/example-springboot-0.9.2-SNAPSHOT.jar:example-springboot/input/ org.springframework.boot.loader.PropertiesLauncher
\ No newline at end of file
diff --git a/transfer.sh b/transfer.sh
index 7d5d0394..9d20deb2 100755
--- a/transfer.sh
+++ b/transfer.sh
@@ -1 +1 @@
-scp example-springboot/target/example-springboot-0.9.1.jar root@87.106.171.45:elasticobjects8_1.jar
+scp example-springboot/target/example-springboot-0.9.2-SNAPSHOT.jar root@87.106.171.45:elasticobjects8_1.jar