Skip to content

Instantly share code, notes, and snippets.

@mks-d
Last active June 4, 2018 11:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mks-d/a9f617df2740657f5c6b7f0bf445b894 to your computer and use it in GitHub Desktop.
Save mks-d/a9f617df2740657f5c6b7f0bf445b894 to your computer and use it in GitHub Desktop.
<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.0</version>
</parent>
<groupId>org.openmrs.module</groupId>
<artifactId>mergepatientdata</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Merge Patient Data</name>
<description>OpenMRS mvn used for merging patient data</description>
<url>https://wiki.openmrs.org/x/FQ4z</url>
<scm>
<connection>scm:git:git@github.com:openmrs/openmrs-module-mergepatientdata.git</connection>
<developerConnection>scm:git:git@github.com:openmrs/openmrs-module-mergepatientdata.git</developerConnection>
<url>https://github.com/openmrs/openmrs-module-mergepatientdata/</url>
</scm>
<modules>
<module>api</module>
<module>omod</module>
</modules>
<properties>
<openMRSVersion>2.0.5</openMRSVersion>
<uiframeworkVersion>3.6</uiframeworkVersion>
<legacyuiVersion>1.0</legacyuiVersion>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<target>1.8</target>
<source>1.8</source>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<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>
</project>
@samuelmale
Copy link

Lol looks great.

Thanks very much for investing your time :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment