100 lines
3.5 KiB
XML
100 lines
3.5 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.openmrs.maven.parents</groupId>
|
|
<artifactId>maven-parent-openmrs-module</artifactId>
|
|
<version>1.1.1</version>
|
|
</parent>
|
|
|
|
<groupId>org.openmrs.module</groupId>
|
|
<artifactId>eAppointmentClient</artifactId>
|
|
<version>1.0.0</version>
|
|
<packaging>pom</packaging>
|
|
<name>eAppointmentClient</name>
|
|
<description>eAppointment-client module for hospital end.</description>
|
|
|
|
<url>https://wiki.openmrs.org/x/FQ4z</url>
|
|
|
|
<scm>
|
|
<connection>scm:git:git@github.com:openmrs/openmrs-module-eAppointment-client.git</connection>
|
|
<developerConnection>scm:git:git@github.com:openmrs/openmrs-module-eAppointment-client.git</developerConnection>
|
|
<url>https://github.com/openmrs/openmrs-module-eAppointment-client/</url>
|
|
</scm>
|
|
|
|
<modules>
|
|
<module>api</module>
|
|
<module>omod</module>
|
|
</modules>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>openmrs-repo</id>
|
|
<name>OpenMRS Nexus Repository</name>
|
|
<url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
|
|
</repository>
|
|
<repository>
|
|
<id>central</id>
|
|
<name>Maven Repository Switchboard</name>
|
|
<layout>default</layout>
|
|
<url>http://repo1.maven.org/maven2</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>openmrs-repo</id>
|
|
<name>OpenMRS Nexus Repository</name>
|
|
<url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<properties>
|
|
<openmrsPlatformVersion>1.11.6</openmrsPlatformVersion>
|
|
<openMRSVersion>2.1.1</openMRSVersion>
|
|
<webServices.version>2.29.0</webServices.version>
|
|
<javaxMail.version>1.6.2</javaxMail.version>
|
|
<!-- <idGenVersion>4.4-SNAPSHOT</idGenVersion>-->
|
|
</properties>
|
|
|
|
<!-- <dependencies>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.openmrs.api</groupId>-->
|
|
<!-- <artifactId>openmrs-api</artifactId>-->
|
|
<!-- <version>${openMRSVersion}</version>-->
|
|
<!-- <type>jar</type>-->
|
|
<!-- <scope>provided</scope>-->
|
|
<!-- </dependency>-->
|
|
<!-- </dependencies>-->
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.openmrs.api</groupId>
|
|
<artifactId>openmrs-api</artifactId>
|
|
<version>${openMRSVersion}</version>
|
|
<type>jar</type>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.openmrs.module</groupId>
|
|
<artifactId>webservices.rest-omod</artifactId>
|
|
<version>${webServices.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openmrs.module</groupId>
|
|
<artifactId>webservices.rest-omod-common</artifactId>
|
|
<version>${webServices.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|