-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
114 lines (101 loc) · 3.83 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<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>limsemrops</artifactId>
<version>1.0.4</version>
<!--<version>1.0.4-SNAPSHOT</version> -->
<packaging>pom</packaging>
<name>Limsemrops</name>
<description>This module is use power the LIMS - EMR Interoperatability</description>
<url>https://wiki.openmrs.org/x/FQ4z</url>
<!-- <scm>-->
<!-- <connection>scm:git:[email protected]:openmrs/openmrs-module-limsemrops.git</connection>-->
<!-- <developerConnection>scm:git:[email protected]:openmrs/openmrs-module-limsemrops.git</developerConnection>-->
<!-- <url>https://github.com/openmrs/openmrs-module-limsemrops/</url>-->
<!-- </scm>-->
<scm>
<connection>scm:git:[email protected]:openmrs/openmrs-module-limsemrops.git</connection>
<developerConnection>scm:git:[email protected]:openmrs/openmrs-module-limsemrops.git</developerConnection>
<url>https://github.com/openmrs/openmrs-module-limsemrops/</url>
</scm>
<modules>
<module>api</module>
<module>omod</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- Importing versions from refapp distro -->
<dependency>
<groupId>org.openmrs.distro</groupId>
<artifactId>referenceapplication</artifactId>
<version>2.7.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.15</version>
</dependency>
</dependencies>
</dependencyManagement>
<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>
<appframeworkVersion>2.9</appframeworkVersion>
<htmlformentryVersion>3.3.0</htmlformentryVersion>
<htmlformentryuiVersion>1.6.1</htmlformentryuiVersion>
<!-- <uiframeworkVersion>3.9</uiframeworkVersion> -->
<uiframeworkVersion>3.15.0</uiframeworkVersion>
<appuiVersion>1.7</appuiVersion>
<formentryappVersion>1.3</formentryappVersion>
<uicommonsModuleVersion>2.1</uicommonsModuleVersion>
</properties>
<!-- added by toyeeb to deploy module to bintray -->
<!-- <build>-->
<!-- <plugins>-->
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-release-plugin</artifactId>-->
<!-- <version>2.5.1</version>-->
<!-- <configuration>-->
<!-- <scmCommentPrefix>[skip ci] [maven-release-plugin]</scmCommentPrefix>-->
<!-- </configuration>-->
<!-- </plugin>-->
<!-- </plugins>-->
<!-- </build>-->
<!-- <distributionManagement>-->
<!-- <repository>-->
<!-- <id>bintray-nmrs-nigeria-maven</id>-->
<!-- <name>nmrs-nigeria-maven</name>-->
<!-- <url>https://api.bintray.com/maven/nmrs-nigeria/maven/openmrs-module-lims/;publish=1</url>-->
<!-- </repository>-->
<!-- </distributionManagement>-->
</project>