<groupId>org.wiremock.integrations</groupId>
             <artifactId>wiremock-spring-boot</artifactId>
             <version>3.0.3</version>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.springframework.boot</groupId>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
         </dependency>
-
+        <dependency>
+            <groupId>io.micrometer</groupId>
+            <artifactId>micrometer-tracing-bridge-otel</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>io.opentelemetry</groupId>
+            <artifactId>opentelemetry-exporter-zipkin</artifactId>
+        </dependency>
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-inline</artifactId>
                 <configuration>
                     <source>17</source>
                     <target>17</target>
+                    <parameters>true</parameters>
                 </configuration>
             </plugin>
             <plugin>
 
 ## limitations under the License.
 ##
 ## General App Properties
+spring.application.name=uui-server
 server.servlet.contextPath=/api/usecaseui-server/v1
 server.port=8082
-spring.http.multipart.max-file-size=512MB
-spring.servlet.multipart.max-file-size=512MB
-spring.http.multipart.max-request-size=512MB
-spring.servlet.multipart.max-request-size=512MB
+spring.http.multipart.max-file-size=128MB
+spring.http.multipart.max-request-size=128MB
 
 ## App DB Properties
 spring.datasource.url=jdbc:postgresql://${POSTGRES_IP:127.0.0.1}:${POSTGRES_PORT:5432}/${POSTGRES_DB_NAME:uui}
-spring.datasource.username=${POSTGRES_USERNAME:uui}
-spring.datasource.password=${POSTGRES_PASSWORD:uui}
-spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
+spring.datasource.username=${POSTGRES_USERNAME}
+spring.datasource.password=${POSTGRES_PASSWORD}
+spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQL9Dialect
 spring.database.driver.classname=org.postgresql.Driver
 spring.jpa.show-sql=false
 spring.jpa.properties.hibernate.format_sql=false
 
 ## Logback Properties
 logging.file.name=logs/usecaseui_server.log
-logging.level.*=ERROR
+logging.level.*=INFO
 
 #enable shutdown
 endpoints.shutdown.enabled=true
 endpoints.shutdown.sensitive=false
 
-server.ssl.protocol=TLS
-server.ssl.key-store=classpath:keystore/uuiServer.jks
-server.ssl.key-store-password=Aa123456
-server.ssl.key-store-type=JKS
-
 intents.scheduledTask.enabled=false
 
+management.endpoints.web.exposure.include=*
+management.tracing.enabled=${TRACING_ENABLED:false}
+management.tracing.sampling.probability=1.0
+management.zipkin.tracing.endpoint=http://${COLLECTOR_HOST:jaeger-collector.istio-system}:${COLLECTOR_PORT:9411}/api/v2/spans
+
 uui-server.client.aai.baseUrl=http://aai.onap
 uui-server.client.aai.username=AAI
 uui-server.client.aai.password=AAI