Hi members, please help me on this one.
i am writing an application that allows users to search for patients using the openMRS api. as part of my software devt practice to learn how patient data is retrieved and displayed from OpenMRS).
I created a new maven project in intelliJ idea IDE and added the following dependencies in my pom.xml file.
<?xml version="1.0" encoding="UTF-8"?>4.0.0
<groupId>com.healthcare.practice.patientsearch</groupId>
<artifactId>patientsearch</artifactId>
<version>1.0-SNAPSHOT</version>
<repositories>
<repository>
<id>openmrs-repo</id>
<name>OpenMRS Maven Repository</name>
<url>https://mavenrepo.openmrs.org/nexus/content/repositories/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.openmrs</groupId>
<artifactId>openmrs-api</artifactId>
<version> 4.0.0 </version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.3.10</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.3.14</version>
</dependency>
How can i resolve the version error?