diff --git a/TelosysTools/telosys-tools.cfg b/TelosysTools/telosys-tools.cfg
index 09e6ee1..ef8ecc4 100644
--- a/TelosysTools/telosys-tools.cfg
+++ b/TelosysTools/telosys-tools.cfg
@@ -22,7 +22,7 @@ ENTITY_PKG=de.infinimotion.model.bean
ProjectVariable.MAVEN_ARTIFACT_ID=model
ProjectVariable.MAVEN_GROUP_ID=de.infinimotion
ProjectVariable.PROJECT_NAME=infinimodel
-ProjectVariable.PROJECT_VERSION=0.0.116
+ProjectVariable.PROJECT_VERSION=0.0.118
ProjectVariable.REST_SERVER_PORT=3000
ProjectVariable.REST_API_ROOT=/api/v1
ProjectVariable.REST_URL_ROOT=http://localhost:3000
diff --git a/TelosysTools/templates/infinimotion/backend/command/processor_create_java.vm b/TelosysTools/templates/infinimotion/backend/command/processor_create_java.vm
deleted file mode 100644
index 7c6e384..0000000
--- a/TelosysTools/templates/infinimotion/backend/command/processor_create_java.vm
+++ /dev/null
@@ -1,3 +0,0 @@
-#set( $component = "backend" )
-#set( $commandType = "Create" )
-#parse( "include/command_processor.vm" )
\ No newline at end of file
diff --git a/TelosysTools/templates/infinimotion/backend/command/processor_delete_java.vm b/TelosysTools/templates/infinimotion/backend/command/processor_delete_java.vm
deleted file mode 100644
index f7cd5e7..0000000
--- a/TelosysTools/templates/infinimotion/backend/command/processor_delete_java.vm
+++ /dev/null
@@ -1,3 +0,0 @@
-#set( $component = "backend" )
-#set( $commandType = "Delete" )
-#parse( "include/command_processor.vm" )
\ No newline at end of file
diff --git a/TelosysTools/templates/infinimotion/backend/command/processor_get_java.vm b/TelosysTools/templates/infinimotion/backend/command/processor_get_java.vm
deleted file mode 100644
index 1431531..0000000
--- a/TelosysTools/templates/infinimotion/backend/command/processor_get_java.vm
+++ /dev/null
@@ -1,3 +0,0 @@
-#set( $component = "backend" )
-#set( $commandType = "Get" )
-#parse( "include/command_processor.vm" )
\ No newline at end of file
diff --git a/TelosysTools/templates/infinimotion/backend/command/processor_list_java.vm b/TelosysTools/templates/infinimotion/backend/command/processor_list_java.vm
deleted file mode 100644
index 4b5a490..0000000
--- a/TelosysTools/templates/infinimotion/backend/command/processor_list_java.vm
+++ /dev/null
@@ -1,3 +0,0 @@
-#set( $component = "backend" )
-#set( $commandType = "List" )
-#parse( "include/command_processor.vm" )
\ No newline at end of file
diff --git a/TelosysTools/templates/infinimotion/backend/command/processor_update_java.vm b/TelosysTools/templates/infinimotion/backend/command/processor_update_java.vm
deleted file mode 100644
index 8ef0d43..0000000
--- a/TelosysTools/templates/infinimotion/backend/command/processor_update_java.vm
+++ /dev/null
@@ -1,3 +0,0 @@
-#set( $component = "backend" )
-#set( $commandType = "Update" )
-#parse( "include/command_processor.vm" )
\ No newline at end of file
diff --git a/TelosysTools/templates/infinimotion/backend/pom_xml.vm b/TelosysTools/templates/infinimotion/backend/pom_xml.vm
index 623b038..721a081 100644
--- a/TelosysTools/templates/infinimotion/backend/pom_xml.vm
+++ b/TelosysTools/templates/infinimotion/backend/pom_xml.vm
@@ -20,7 +20,7 @@
com.fasterxml.jackson.core
jackson-databind
- 2.20.0
+ 2.20.1
com.fasterxml.jackson.core
@@ -30,7 +30,7 @@
com.fasterxml.jackson.datatype
jackson-datatype-jsr310
- 2.20.0
+ 2.20.1
jakarta.enterprise
diff --git a/TelosysTools/templates/infinimotion/persistence/pom_xml.vm b/TelosysTools/templates/infinimotion/persistence/pom_xml.vm
index 39771cc..e89d5a6 100644
--- a/TelosysTools/templates/infinimotion/persistence/pom_xml.vm
+++ b/TelosysTools/templates/infinimotion/persistence/pom_xml.vm
@@ -25,7 +25,7 @@
com.fasterxml.jackson.core
jackson-databind
- 2.20.0
+ 2.20.1
com.fasterxml.jackson.core
@@ -35,7 +35,7 @@
com.fasterxml.jackson.datatype
jackson-datatype-jsr310
- 2.20.0
+ 2.20.1
jakarta.enterprise
@@ -45,12 +45,12 @@
io.quarkus.arc
arc
- 3.28.4
+ 3.29.4
io.quarkus
quarkus-mongodb-panache
- 3.28.4
+ 3.29.4
org.projectlombok
diff --git a/TelosysTools/templates/infinimotion/templates.cfg b/TelosysTools/templates/infinimotion/templates.cfg
index fc6cf07..04018e5 100644
--- a/TelosysTools/templates/infinimotion/templates.cfg
+++ b/TelosysTools/templates/infinimotion/templates.cfg
@@ -40,12 +40,6 @@ Java CR CreateModels (B) ; CommandCreate${BEANNAME}Response.java; backend
Java CR UpdateModels (B) ; CommandUpdate${BEANNAME}Response.java; backend/${SRC}/${ROOT_PKG}/backend ; backend/command/response_update_java.vm
Java CR DeleteModels (B) ; CommandDelete${BEANNAME}Response.java; backend/${SRC}/${ROOT_PKG}/backend ; backend/command/response_delete_java.vm
-Java CP GetModels (B) ; CommandGet${BEANNAME}Processor.java ; backend/${SRC}/${ROOT_PKG}/backend ; backend/command/processor_get_java.vm
-Java CP ListModels (B) ; CommandList${BEANNAME}Processor.java ; backend/${SRC}/${ROOT_PKG}/backend ; backend/command/processor_list_java.vm
-Java CP CreateModels (B) ; CommandCreate${BEANNAME}Processor.java; backend/${SRC}/${ROOT_PKG}/backend ; backend/command/processor_create_java.vm
-Java CP UpdateModels (B) ; CommandUpdate${BEANNAME}Processor.java; backend/${SRC}/${ROOT_PKG}/backend ; backend/command/processor_update_java.vm
-Java CP DeleteModels (B) ; CommandDelete${BEANNAME}Processor.java; backend/${SRC}/${ROOT_PKG}/backend ; backend/command/processor_delete_java.vm
-
Maven Backend pom.xml ; pom.xml ; backend ; backend/pom_xml.vm ; 1
### Persistence ###